/* ── Login page — extends signup.css layout ────────────────────────────────
   Include this after signup.css. Adds styles specific to the login flow.
   ─────────────────────────────────────────────────────────────────────────── */

/* Inline forgot-password link beside the password label */
.label-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.5rem;
}

.forgot-link {
    font-size: 0.8rem;
    color: var(--blue);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}

.forgot-link:hover { text-decoration: underline; }

/* Success alert (mirrors .form-error but green) */
.form-success {
    background: #f0fdf4;
    border: 1px solid #86efac;
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    color: #166534;
    margin-bottom: 1rem;
}

/* Footer prompt below the card ("Don't have an account?") */
.login-footer {
    margin-top: 1.25rem;
    text-align: center;
    font-size: 0.88rem;
    color: var(--text-muted);
}
