/* Account/ForgotPassword.cshtml — page-scoped (Phase 5 long-tail de-bespoke).
   Already fully v2-tokenized; pure extraction, zero value/selector changes. */

.v2-forgot-page {
    min-height: calc(100vh - 60px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    background: var(--bg-primary);
}

.v2-forgot-column {
    width: 100%;
    max-width: 400px;
}

/* Heading */
.v2-forgot-head {
    text-align: center;
    margin-bottom: 1.5rem;
}

.v2-forgot-head-icon {
    font-size: 2.25rem;
    line-height: 1;
    color: var(--accent-primary);
    display: inline-block;
    margin-bottom: 0.5rem;
}

.v2-forgot-title {
    margin: 0 0 0.25rem 0;
    color: var(--accent-primary);
}

.v2-forgot-subtitle {
    margin: 0;
    color: var(--text-secondary);
}

/* Card */
.v2-forgot-card {
    padding: 1.75rem;
}

.v2-forgot-note {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
}

.v2-forgot-note .lucide {
    color: var(--accent-primary);
    flex-shrink: 0;
}

.v2-forgot-alert {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 1.25rem;
}

.v2-forgot-alert:empty {
    display: none;
}

/* Form */
.v2-forgot-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.v2-forgot-input-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.v2-forgot-input-group .v2-field .lucide {
    color: var(--text-muted);
}

.v2-forgot-error {
    color: var(--error);
}

.v2-forgot-error:empty {
    display: none;
}

.v2-forgot-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    margin-top: 0.25rem;
}

/* Back to login */
.v2-forgot-back {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.v2-forgot-back a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

@media (max-width: 480px) {
    .v2-forgot-card {
        padding: 1.5rem;
    }
}
