#register {
    width: 586px;
}

.register-form {
    margin: 115px 0 0;
    padding: 36px 0;
}

.register-form__wrapper {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.register-form__wrapper > div {
    width: 50%;
}

.register-form__banner {
    display: flex;
    justify-content: end;
    align-items: start;
    flex-direction: column;
    padding: 64px;
    height: 648px;
    background: linear-gradient(270deg, rgba(31, 51, 87, .07) 0%, rgba(31, 51, 87, .65) 100%), url('../img/register.png') 0 / cover no-repeat, #072650;
    color: #fff;
}

.register-form__banner__title {
    font-size: 48px;
    line-height: 48px;
    text-transform: uppercase;
    margin: 16px 0;
}

.register-form__banner__caption {
    font-size: 16px;
    line-height: 22px;
    width: 70%;
    margin: 0;
}

.register-form__form-wrapper {
    display: flex;
    justify-content: end;
    align-items: center;
}

.register_form__headline {
    text-transform: uppercase;
    text-align: center;
    color: #1F3357;
    margin-bottom: 32px;
    font-size: 20px;
    line-height: 22px;
}

.register-form__fields {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.register-form__field {
    width: 50%;
    max-width: 285px;
}

.register-form__field.full-field {
    width: 100%;
    max-width: 100%;
}

.register-form__field .radio-group {
    display: flex;
    gap: 20px;
    margin-top: 8px;
}

.register-form__field .radio-group > label {
    width: 50%;
    height: 44px;
    text-align: center;
    text-transform: uppercase;
    font-size: 12px;
    background: #DEE8F8;
    line-height: 44px;
    cursor: pointer;
}

.register-form__field .radio-group > label > input {
    opacity: 0;
    /*visibility: hidden;*/
}

.register-form__field .form-input{
    padding: 12px 16px;
    border-radius: unset;
    border: 1px solid #9E9E9E;
    width: 100%;
}

.register-form__field .form-label{
    color: #1F3357;
}

.register-form__forgot {
    text-align: right;
    padding: 9px 0;
    margin-bottom: 16px;
}

.register-form__forgot__link {
    font-size: 16px;
    line-height: 22px;
    font-weight: 700;
    text-decoration: none;
    color: #1F3357;
}

.register-form__submit-button {
    padding: 8px 16px !important;
    text-transform: uppercase;
}

.register-form__submit-button:not(:hover) {
    background: #193661 !important;
}

.register-form__registration {
    margin-top: 16px;
    color: #1F3357 !important;
    font-size: 16px !important;
    text-align: center;
}

.register-form__registration .link{
    font-weight: bold !important;
    text-decoration: none;
    font-size: 16px !important;
    color: #1F3357 !important;
}

.register-form__agree {
    display: flex;
    justify-content: start;
    margin: 16px 0;
    gap: 8px;
}

.register-form__agree > label {
    font-size: 16px;
    color: #1F3357;
    line-height: 22px;
}

.register-form__agree > label > a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    color: #1F3357;
    line-height: 22px;
}


.register-form__agree > input[type="checkbox"] {
    width: 20px;
    height: 20px;
}

.register-form__agree .form-error {
    width: 100%;
}

@media (max-width: 728px) {
    .register-form {
        margin: 0;
        padding: 32px 16px;
    }

    .register-form__wrapper {
        flex-direction: column;
    }


    .register-form__wrapper > div {
        width: 100%;
    }

    .register-form__banner {
        padding: 24px;
        height: 192px;
    }

    .register-form__banner__title {
        font-size: 24px;
        line-height: 28px;
        margin: 12px 0;
    }

    .register-form__banner__caption {
        font-size: 14px;
        line-height: 18px;
        width: 100%;
    }

    .register_form__headline{
        margin-bottom: 24px;
    }

    .register-form__fields {
        flex-direction: column;
    }

    .register-form__field {
        width: 100%;
        max-width: 100%;
    }

    .register-form__field .form-input{
        max-width: 100%;
    }
}
