.form {
    position: relative;
    width: 100%;
    background: #FEC627;
    border-radius: 20px;
    padding: 30px 20px;
}

.preloader {
    display: none;
    background: white;
    position: absolute;
    top: 0%;
    bottom: 0;
    left: 0%;
    right: 0;
    z-index: 9995;
    background-image: url(../images/preloader.gif);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    opacity: 0.5;
    border-radius: 20px;
}

.form__title {
    font-weight: 700;
    font-size: 40px;
    line-height: 40px;
    text-align: center;
    text-transform: uppercase;

    color: #000000;
    margin-bottom: 10px;
}

.form__subtitle {
    font-size: 16px;
    line-height: 19px;
    text-align: center;

    color: #000000;
    margin-bottom: 25px;
}

.form-input__wrapper {
    position: relative;
    margin-bottom: 15px;
}

.form-input {
    width: 100%;
    font-size: 16px;
    line-height: 19px;

    color: #000000;
    background: #FFFFFF;
    border: 1px solid #000000;
    border-radius: 5px;
    padding: 15.5px 15px;
}

.phone {
    padding-left: 104px !important;
}

.form-input.error {
    background: linear-gradient(0deg, rgba(255, 0, 0, 0.07), rgba(255, 0, 0, 0.07)), #FFFFFF;
    border: 1px solid #FF0000;
}

.form-input.valid {
    background: linear-gradient(0deg, rgba(5, 225, 0, 0.07), rgba(5, 225, 0, 0.07)), #FFFFFF;
    border: 1px solid #039C00;
}

.form-input::placeholder {
    font-size: 16px;
    line-height: 19px;

    color: #000000;
}

.form__submit {
    margin: 10px 0 25px;
    height: 54px;
}

label.error {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 2;
    background-color: #FF0000;
    color: #FFFFFF;
    font-size: 16px;
    line-height: 19px;
    padding: 5px;
}

.checkbox-svg {
    align-items: flex-start !important;
    margin-bottom: 0 !important;
}

.checkbox-svg label.checked-svg {
    width: 16px;
    height: 16px;
}

.checked-svg svg {
    background: #000000 !important;
    border-radius: 3px !important;
}

.checked-svg:hover:before {
    display: none !important;
}

.checked-svg:hover svg {
    stroke: #D9D9D9 !important;
}

#cbx:checked+.checked-svg svg {
    stroke: #D9D9D9 !important;
}

.privacy-checkbox {
    font-size: 13px !important;
    line-height: 16px !important;

    color: #000000 !important;
    padding-left: 8px !important;
}

.checkbox-svg a {
    text-decoration: underline !important;
}

#cbx-3:checked+.checked-svg svg {
    stroke: #D9D9D9 !important;
}

@media (max-width: 720px) {
    .form {
        padding: 27px 18px;
    }

    .form__title {
        font-size: 36px;
        line-height: 36px;
        margin-bottom: 9px;
    }

    .form__subtitle {
        font-size: 15px;
        line-height: 17px;
        margin-bottom: 22px;
    }

    .form-input {
        font-size: 14px;
        line-height: 17px;
        padding: 14px;
    }

    .form-input::placeholder {
        font-size: 14px;
        line-height: 17px;
    }

    .form__submit {
        font-size: 18px;
        line-height: 22px;
        height: 49px;
        margin-bottom: 22px;
    }

    .privacy-checkbox {
        font-size: 11px !important;
        line-height: 14px !important;
    }
}