/* ══════════════════════════════════════════════════════════════
   Style moderne commun — pages non-loguées ASTRA
   Palette alignée sur login.php (dégradé bleu, Poppins, cards)
   ══════════════════════════════════════════════════════════════ */

/* ── Variables globales ─────────────────────────────────────── */
:root {
    --nl-primary:    #2d5aab;
    --nl-primary-dk: #1e3a6e;
    --nl-accent:     #3d62cc;
    --nl-accent-lt:  #4a78e8;
    --nl-bg:         #f5f7fc;
    --nl-card:       #ffffff;
    --nl-border:     #dde3f0;
    --nl-text:       #1a2340;
    --nl-muted:      #7080a0;
}

/* ── Corps ──────────────────────────────────────────────────── */
body {
    background-color: var(--nl-bg) !important;
}

/* ── Jumbotron header → dégradé bleu (identique au panneau     */
/*    gauche de login.php)                                       */
/* ─────────────────────────────────────────────────────────── */
.jumbotron {
    background: linear-gradient(160deg, #1e3a6e 0%, #2d5aab 55%, #3f72d1 100%) !important;
    border-radius: 0 !important;
    padding-top:    10px !important;
    padding-bottom: 10px !important;
    box-shadow: 0 4px 20px rgba(30, 58, 110, .25) !important;
}

/* Textes dans le jumbotron ─────────────────────────────────── */
.jumbotron h2, .jumbotron h3, .jumbotron h4,
.jumbotron h5, .jumbotron h6,
.jumbotron .header-message,
.jumbotron font {
    color: #ffffff !important;
}

/* Mini-tableau des icônes (Prix Généraux / Concours / Champ) */
.jumbotron .header-sub-table td {
    color: rgba(255, 255, 255, .82) !important;
}

/* Logo ASTRA : ombre portée sur fond sombre */
.jumbotron .header-nolog-logo-left img {
    filter: drop-shadow(0 3px 12px rgba(0, 0, 0, .35));
}

/* Logos partenaires (Amis BPB / PCI) */
.jumbotron .header-nolog-right img {
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .28));
}

/* ── Bouton "retour login" (classe utilitaire optionnelle) ─── */
.nl-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: .42rem 1rem;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 8px;
    color: #fff !important;
    font-size: .8rem;
    font-weight: 600;
    text-decoration: none !important;
    transition: background .2s;
    margin-bottom: 4px;
}
.nl-back-btn:hover {
    background: rgba(255, 255, 255, .25);
    color: #fff !important;
}

/* ── Mobile ─────────────────────────────────────────────────── */
@media (max-width: 575px) {
    .jumbotron {
        padding-top:    6px !important;
        padding-bottom: 6px !important;
    }
}
