/* Shared chrome for all auth-flow pages: login, forgot-password, forgot-password-sent,
   reset-password. Provides the consistent background image + translucent card. Form
   controls deliberately fall back to Bootstrap defaults — no pill-radius inputs/buttons. */

/* Body selector is intentionally unscoped — auth-screen.css is only linked from auth pages,
   so leakage isn't a concern. Keeps templates clean (no need to set a body class). */
body {
    background: url('/images/login-bg.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: 'Open Sans', sans-serif;
}

.auth-card {
    max-width: 420px;
    margin: 80px auto;
    background: rgba(255, 255, 255, 0.88);
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.auth-card h1 {
    text-align: center;
    margin: 0 0 8px;
    font-size: 22px;
    color: #1a1a1a;
}

.auth-card .lead {
    text-align: center;
    color: #6c757d;
    margin: 0 0 24px;
    font-size: 14px;
}

.auth-card .auth-logo {
    text-align: center;
    margin-bottom: 24px;
}

.auth-card .auth-logo img {
    max-width: 120px;
}

.auth-card .btn-primary {
    width: 100%;
    padding: 10px;
    font-size: 16px;
}

.auth-card .alert {
    margin-top: 16px;
}
