.popup-overlay {
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 999999;
}

.popup {
    max-width: 100%;
    padding: 15px 20px 10px 20px;
    position: relative;
    background: #fff;
    margin: 20px auto;
    margin-top: 10%;
}

.popup-close {
    position: absolute;
    top: 25px;
    right: 10px;
    cursor: pointer;
    color: #000;
    width: 40px;
}

.popup-wrapper {
    margin: 50px 50px 50px 50px;
    border: 1px solid #E7E8EA;
    min-height: 376px;
    padding: 50px;
    text-align: center;
}

.popup-wrapper h2.title-h2 {
    color: #1A1A1A;
    font-weight: 700;
    font-size: 50px;
    margin-bottom: 21px;
}

.popup-wrapper p {
    font-size: 20px;
    font-weight: 400;
    line-height: 10px;
}

.popup-wrapper form {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.popup-wrapper input {
    width: 547px;
    border: 1px solid #C2C2C2;
    height: 64px;
    border-radius: 5px;
    padding-left: 10px;
}

.popup-wrapper button {
    width: 232px;
    height: 64px;
    border-radius: 5px;
    margin-left: 15px;
}

.popup-wrapper p.warning {
    font-size: 14px;
    font-weight: 400;
    line-height: 10px;
    text-align: center;
    margin-top: 15px;
}

@media only screen and (max-width: 992px) {
    .popup-wrapper {
        margin: 50px 10px 50px 10px;
        padding: 30px 10px 30px 10px;
    }


    .popup-wrapper h2.title-h2 {
        color: #1A1A1A;
        font-weight: 700;
        font-size: 25px;
        margin-bottom: 21px;
    }

    .popup-wrapper p {
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
    }

    .popup-wrapper form {
        margin-top: 20px;
        display: block;
    }

    .popup-wrapper input {
        width: 233px;
        height: 46px;
    }

    .popup-wrapper button {
        width: 238px;
        height: 52px;
        font-size: 18px;
        padding: 0px;
        margin-left: 0px;
        margin-top: 10px;
    }

    .popup-wrapper p.warning {
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
        text-align: center;
        margin-top: 15px;
    }
}