/* ═══════════════════════════════════════════════════════════
   SÉCURITÉ CONNEXION (chantier 1, mockup connexion-blindee-V1)
   Cartes plein écran : mot de passe oublié · nouveau mdp · 2FA.
   Réutilise la grammaire login__* ; compléments préfixés secu-.
   ═══════════════════════════════════════════════════════════ */

#secu-carte { position: fixed; inset: 0; z-index: 4000; display: flex; align-items: center; justify-content: center; }
.secu-fond { position: absolute; inset: 0; background: var(--bg); }
.secu-boite {
  position: relative; width: min(420px, calc(100vw - 32px));
  background: var(--glass-bg); backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border, rgba(200, 220, 200, 0.6)); border-radius: 22px;
  padding: 36px 34px 28px; box-shadow: 0 8px 40px rgba(13, 27, 15, 0.08);
}
.secu-titre { font-family: 'Lato', -apple-system, sans-serif; font-size: 24px; font-weight: 900; letter-spacing: -0.5px; color: var(--text); margin-bottom: 10px; }
.secu-sub { font-size: 13px; color: var(--text2); line-height: 1.55; margin-bottom: 18px; }
.secu-msg { min-height: 18px; font-size: 12.5px; color: var(--red); margin-top: 10px; }
.secu-note { font-size: 12px; color: var(--muted); font-style: italic; margin-top: 12px; }
.secu-qr { display: flex; justify-content: center; margin: 6px 0 16px; }
.secu-qr img { border-radius: 12px; background: #fff; padding: 8px; }
.secu-retour { margin-top: 16px; background: none; border: none; color: var(--muted); font-size: 12.5px; cursor: pointer; }
.secu-retour:hover { color: var(--green-dark, #0D6B35); }

/* Paramètres → Sécurité */
.secu-appareil { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border, rgba(200, 220, 200, 0.6)); }
.secu-appareil:last-child { border-bottom: none; }
.secu-appareil-nom { font-weight: 600; color: var(--text); font-size: 13.5px; }
.secu-appareil-meta { font-size: 12px; color: var(--muted); margin-top: 2px; }
.secu-badge-ici { font-size: 10px; font-weight: 700; letter-spacing: 0.8px; color: var(--green-dark, #0D6B35); background: rgba(47, 191, 122, 0.12); border-radius: 100px; padding: 4px 10px; }
.secu-btn-danger {
  width: 100%; height: 42px; border-radius: 12px; border: 1px solid rgba(224, 32, 32, 0.35);
  background: none; color: var(--red); font-weight: 700; font-size: 13px; cursor: pointer; margin-top: 14px;
}
.secu-btn-danger:hover { background: rgba(224, 32, 32, 0.06); }
.secu-hint { font-size: 12px; color: var(--muted); text-align: center; margin-top: 8px; line-height: 1.5; }
