/* register.css — Register page shares auth styles from login.css */
/* This file intentionally extends login.css — link both in Register.cshtml */

/* Register-specific: slightly wider form box on desktop to fit 5 fields */
@media (min-width: 768px) {
    .auth-form-box {
        max-width: 440px;
    }
}

.auth-field-error {
    color: #dc2626;
    font-size: .8rem;
    margin-top: 6px;
}

.auth-input-wrap.is-invalid input {
    border-color: #dc2626 !important;
}
