/* =====================================================================
   Football Contest 2026 — shared auth-page theme (Identity area)
   Used by Login, ForgotPassword, ResetPassword, confirmations.
   NOTE: the Identity layout loads Font Awesome 5.15.3 — use FA5 names.
   ===================================================================== */

.auth-page {
    --fc-navy: #0b1526;
    --fc-navy2: #12203a;
    --fc-gold: #ffc93c;
    --fc-gold2: #ffaf00;
    --fc-white: #f5f7fa;
    --fc-muted: #93a1b5;
    background: radial-gradient(ellipse at 50% -20%, #23446e 0%, var(--fc-navy2) 45%, var(--fc-navy) 100%);
    border-radius: 26px;
    padding: 2.6rem 1.2rem 2.4rem;
    margin: 0.5rem auto 2rem;
    max-width: 560px;
    box-shadow: 0 18px 50px rgba(11, 21, 38, 0.45);
}

.auth-page-wide { max-width: 720px; }

/* ---- Hero ---- */
.auth-hero {
    text-align: center;
    margin-bottom: 1.8rem;
}

.auth-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 0.35rem 1.2rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--fc-gold);
    margin-bottom: 0.9rem;
}

.auth-year {
    font-size: clamp(2.8rem, 8vw, 4.2rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: 3px;
    margin: 0;
    background: linear-gradient(180deg, #ffffff 20%, var(--fc-gold) 75%, var(--fc-gold2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-title {
    color: var(--fc-white);
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 6px;
    margin: 0.4rem 0 0;
    text-transform: uppercase;
}

.auth-sub {
    color: var(--fc-muted);
    font-size: 0.95rem;
    margin: 0.6rem 0 0;
}

/* ---- Card ---- */
.auth-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

.auth-card-header {
    background: linear-gradient(135deg, var(--fc-gold) 0%, var(--fc-gold2) 100%);
    color: #14213a;
    font-weight: 900;
    font-size: 1.1rem;
    padding: 0.9rem 1.5rem;
}

    .auth-card-header i { margin-right: 0.5rem; }

.auth-card-body { padding: 1.5rem 1.6rem 1.6rem; }

.auth-validation { margin-bottom: 1rem; font-size: 0.92rem; }

/* ---- Fields ---- */
.auth-field { margin-bottom: 1.15rem; }

    .auth-field label {
        display: block;
        font-weight: 800;
        font-size: 0.85rem;
        letter-spacing: 0.8px;
        text-transform: uppercase;
        color: #33415c;
        margin-bottom: 0.4rem;
    }

    .auth-field small {
        display: block;
        color: #7c8aa0;
        font-size: 0.82rem;
        margin-top: 0.35rem;
    }

.auth-input-wrap { position: relative; }

    .auth-input-wrap i {
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
        color: #9aa8bd;
        font-size: 0.95rem;
        pointer-events: none;
    }

    .auth-input-wrap input {
        width: 100%;
        border: 2px solid #e3e8f0;
        border-radius: 12px;
        padding: 0.75rem 1rem 0.75rem 2.6rem;
        font-size: 1rem;
        color: #1c2a41;
        background: #f8fafd;
        transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }

        .auth-input-wrap input:focus {
            outline: none;
            border-color: var(--fc-gold2);
            background: #ffffff;
            box-shadow: 0 0 0 4px rgba(255, 201, 60, 0.25);
        }

.auth-remember {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #5c6b80;
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 1.1rem;
    cursor: pointer;
}

    .auth-remember input {
        width: 1.05rem;
        height: 1.05rem;
        accent-color: var(--fc-gold2);
    }

/* ---- Submit ---- */
.auth-submit {
    display: block;
    width: 100%;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, var(--fc-gold) 0%, var(--fc-gold2) 100%);
    color: #14213a;
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: 0.4px;
    padding: 0.85rem 1rem;
    border-radius: 999px;
    box-shadow: 0 8px 26px rgba(255, 175, 0, 0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    text-align: center;
}

    .auth-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 34px rgba(255, 175, 0, 0.6);
        color: #14213a;
        text-decoration: none;
    }

    .auth-submit i { margin-right: 0.5rem; }

a.auth-submit { display: inline-block; width: auto; padding: 0.8rem 2.2rem; }

/* ---- Links ---- */
.auth-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1.1rem;
    text-align: center;
}

    .auth-links a {
        color: #b47d00;
        font-weight: 700;
        font-size: 0.92rem;
        text-decoration: none;
    }

        .auth-links a:hover {
            color: #8f6300;
            text-decoration: underline;
        }

        .auth-links a i { margin-right: 0.35rem; }

.auth-home {
    text-align: center;
    margin-top: 1.4rem;
}

    .auth-home a {
        color: var(--fc-muted);
        font-weight: 700;
        font-size: 0.9rem;
        text-decoration: none;
    }

        .auth-home a:hover { color: var(--fc-gold); text-decoration: none; }

        .auth-home a i { margin-right: 0.35rem; }

/* ---- Info note / big status icon ---- */
.auth-note {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    background: #f4f7fb;
    border: 1px solid #e3e8f0;
    border-radius: 12px;
    padding: 0.85rem 1rem;
    color: #5c6b80;
    font-size: 0.88rem;
    line-height: 1.5;
    margin-top: 1.1rem;
}

    .auth-note i { color: var(--fc-gold2); margin-top: 0.15rem; }

    .auth-note a { color: #b47d00; font-weight: 700; }

.auth-status-icon {
    font-size: 3.2rem;
    color: var(--fc-gold2);
    margin-bottom: 0.8rem;
}

.auth-center { text-align: center; }

    .auth-center p { color: #5c6b80; }

    .auth-center h4 {
        color: #14213a;
        font-weight: 800;
        margin-bottom: 0.8rem;
    }

.auth-img { max-width: 220px; border-radius: 14px; margin: 0.6rem auto 1rem; }
