/*
    Layout for the Identity single-column sign-up forms -- a single centered column (unlike
    Login's two-panel grid), plus the password-hint and inline "Instruction" trigger styling.
    Shared by Register.cshtml (Graduation Form sign-up) and RegisterAdmission.cshtml
    (Admission Form sign-up), which have the same shape: banner, one panel, one form.
*/

.register-shell {
    max-width: 32rem;
    margin: 0 auto;
}

.form-hint {
    font-size: 0.82rem;
    color: var(--bs-secondary-color, #6c757d);
    margin: 0.3rem 0 0.9rem;
}

.form-help-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 1rem;
}

.form-help-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: none;
    border: none;
    padding: 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brand-primary-strong);
    cursor: pointer;
    text-decoration: none;
}

.form-help-link:hover,
.form-help-link:focus-visible {
    text-decoration: underline;
}
