/* REGISTER CONSENT PAGE */

.register-consent {
    width: 100%;
    min-height: 620px;
    padding: 70px var(--page-padding-x);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: #ffffff;
}

.register-consent__box {
    width: 100%;
    max-width: 860px;
    background: #f3f3f3;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 16px;
    padding: 42px 46px 46px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.register-consent__title {
    margin: 0 0 26px;
    color: #013591;
    font-size: 32px;
    font-weight: 900;
    line-height: 1.1;
}

.register-consent__text {
    margin: 0 0 18px;
    color: #202020;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.65;
}

.register-consent__actions {
    margin-top: 34px;
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.register-consent__button {
    min-width: 160px;
    min-height: 46px;
    padding: 0 24px;
    border-radius: 8px;
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition:
        background 160ms ease,
        color 160ms ease,
        transform 160ms ease,
        box-shadow 160ms ease;
}

.register-consent__button--accept {
    background: #013591;
    color: #ffffff;
    box-shadow: 0 10px 22px rgba(1, 53, 145, 0.24);
}

.register-consent__button--accept:hover {
    background: #001f5c;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(1, 53, 145, 0.30);
}

.register-consent__button--decline {
    background: #d8d8d8;
    color: #202020;
}

.register-consent__button--decline:hover {
    background: #c7c7c7;
    transform: translateY(-2px);
}

.register-consent__notice {
    margin-top: 28px;
    padding: 18px 20px;
    border-left: 5px solid #013591;
    background: rgba(1, 53, 145, 0.08);
    color: #013591;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.45;
}

/* REGISTER FORM */

.register-form {
    width: 100%;
}

.register-form__title {
    margin: 0 0 14px;
    color: #013591;
    font-size: 32px;
    font-weight: 900;
    line-height: 1.1;
}

.register-form__hint {
    margin: 0 0 30px;
    color: #444444;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.55;
}

.register-form__grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 24px;
}

.register-form__field {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.register-form__label {
    color: #202020;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
}

.register-form__input {
    width: 100%;
    min-height: 46px;
    border: 1px solid rgba(0, 0, 0, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    color: #202020;
    padding: 0 14px;
    font-size: 15px;
    font-weight: 500;
    outline: none;
    transition:
        border-color 160ms ease,
        background 160ms ease,
        box-shadow 160ms ease;
}

.register-form__input::placeholder {
    color: rgba(0, 0, 0, 0.42);
}

.register-form__input:focus {
    border-color: #013591;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(1, 53, 145, 0.12);
}

.register-form__input:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.register-form__captcha {
    margin-top: 28px;
    padding: 20px;
    border: 1px dashed rgba(1, 53, 145, 0.45);
    border-radius: 12px;
    background: rgba(1, 53, 145, 0.06);
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 18px;
    align-items: center;
}

.register-form__captcha-box {
    min-height: 54px;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid rgba(1, 53, 145, 0.20);
    color: #013591;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0.03em;
    text-align: center;
}

.register-form__input--captcha {
    min-height: 54px;
}

.register-form__actions {
    margin-top: 34px;
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.register-form__button {
    min-width: 180px;
    min-height: 46px;
    padding: 0 24px;
    border-radius: 8px;
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition:
        background 160ms ease,
        color 160ms ease,
        transform 160ms ease,
        box-shadow 160ms ease;
}

.register-form__button--primary {
    background: #013591;
    color: #ffffff;
    box-shadow: 0 10px 22px rgba(1, 53, 145, 0.24);
}

.register-form__button--primary:hover {
    background: #001f5c;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(1, 53, 145, 0.30);
}

.register-form__button--secondary {
    background: #d8d8d8;
    color: #202020;
}

.register-form__button--secondary:hover {
    background: #c7c7c7;
    transform: translateY(-2px);
}

@media (max-width: 820px) {
    .register-form__grid {
        grid-template-columns: 1fr;
    }

    .register-form__captcha {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .register-form__title {
        font-size: 27px;
    }

    .register-form__hint {
        font-size: 16px;
    }

    .register-form__button {
        width: 100%;
    }
}