.auth-main--register {
    padding-top: 34px;
    padding-bottom: 34px;
}

.auth-shell--register {
    grid-template-columns: minmax(350px, .78fr) minmax(600px, 1.22fr);
}

.auth-story--register {
    min-height: 720px;
}

.auth-form-panel--register {
    padding: clamp(40px, 4vw, 62px);
}

.auth-form-wrap--register {
    max-width: 650px;
}

.auth-field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.register-password-hint {
    margin: -8px 0 18px;
    color: #82938f;
    font-size: 11px;
    line-height: 1.5;
}

.register-login-link {
    margin: 22px 0 0;
    color: var(--auth-muted);
    font-size: 13px;
    text-align: center;
}

.register-login-link a {
    color: var(--auth-green);
    font-weight: 750;
    text-decoration: none;
}

.register-login-link a:hover {
    color: var(--auth-green-bright);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.auth-form-wrap--register .auth-note {
    margin-top: 15px;
}

@media (max-width: 1100px) {
    .auth-shell--register {
        grid-template-columns: minmax(300px, .7fr) minmax(560px, 1.3fr);
    }
}

@media (max-width: 900px) {
    .auth-shell--register {
        max-width: 720px;
        grid-template-columns: 1fr;
    }

    .auth-story--register {
        min-height: 300px;
    }
}

@media (max-width: 600px) {
    .auth-main--register {
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .auth-story--register {
        min-height: 220px;
    }

    .auth-field-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .auth-form-panel--register {
        padding: 34px 24px 30px;
    }
}

