/* ==========================================================
   AUTH PAGES — shared card styling (Meal on the Way)
   Used by: forgot-password, reset-password, verify-email, confirm-password.
   (login & register keep their own inline styles.)
   Fonts: Sailor (headings) + Instrument Sans (body) via guest layout.
   ========================================================== */

.auth-screen {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    font-family: var(--font-body, 'Instrument Sans', sans-serif);
}

.auth-card {
    width: 100%;
    max-width: 440px;
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.auth-back {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.82rem;
    color: #9CA3AF;
    text-decoration: none;
    margin-bottom: 1.75rem;
    transition: color 0.15s;
}

.auth-back:hover {
    color: #1F2937;
    text-decoration: none;
}

.auth-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.auth-logo img {
    height: 36px;
    width: auto;
}

.auth-title {
    font-family: var(--font-heading, 'Sailor', sans-serif);
    font-size: 1.75rem;
    color: #1F2937;
    margin: 0 0 0.3rem;
    letter-spacing: -0.02em;
}

.auth-subtitle {
    font-size: 0.88rem;
    color: #9CA3AF;
    margin: 0 0 1.75rem;
    line-height: 1.55;
}

.auth-field {
    margin-bottom: 1rem;
}

.auth-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.35rem;
}

.auth-input {
    width: 100%;
    padding: 0.6rem 0.9rem;
    border: 1.5px solid #E5E7EB;
    border-radius: 10px;
    font-family: var(--font-body, 'Instrument Sans', sans-serif);
    font-size: 0.9rem;
    color: #1F2937;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
    box-sizing: border-box;
    background: #fff;
}

.auth-input:focus {
    border-color: #FB6E36;
    box-shadow: 0 0 0 3px rgba(251, 110, 54, 0.12);
}

.auth-input::placeholder {
    color: #D1D5DB;
}

.auth-error {
    font-size: 0.78rem;
    color: #DC2626;
    margin-top: 0.3rem;
}

.auth-submit {
    width: 100%;
    padding: 0.75rem;
    background: #1F2937;
    color: #fff;
    border: none;
    border-radius: 40px;
    font-family: var(--font-body, 'Instrument Sans', sans-serif);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s;
    letter-spacing: 0.01em;
    margin-top: 0.5rem;
}

.auth-submit:hover {
    background: #374151;
}

/* Secondary / text actions */
.auth-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.25rem;
}

.auth-link {
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body, 'Instrument Sans', sans-serif);
    font-size: 0.82rem;
    font-weight: 600;
    color: #FB6E36;
    text-decoration: none;
    transition: color 0.15s;
    padding: 0;
}

.auth-link:hover {
    color: #e85e28;
}

.auth-footer {
    text-align: center;
    font-size: 0.82rem;
    color: #9CA3AF;
    margin-top: 1.25rem;
}

.auth-footer a {
    font-weight: 700;
    color: #FB6E36;
    text-decoration: none;
}

.auth-footer a:hover {
    color: #e85e28;
}

/* Status / success messages */
.auth-status {
    background: #E7F2DA;
    color: #3F6E22;
    border: 1px solid #CBE3B4;
    border-radius: 10px;
    padding: 0.7rem 0.9rem;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}
