/* ============================================================
   APP NEXA MENU - Telas de autenticacao + landing
   ============================================================ */

.auth-wrap {
  min-height: 100vh; display: grid; grid-template-columns: 1.1fr 1fr;
}

.auth-side {
  background:
    radial-gradient(900px 600px at 20% 0%, rgba(30,71,184,.35), transparent 60%),
    radial-gradient(700px 500px at 90% 100%, rgba(43,49,60,.6), transparent 60%),
    linear-gradient(160deg, #131722, #0B0E14);
  position: relative; overflow: hidden; padding: 56px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.auth-side::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 22px 22px; pointer-events: none;
}
.auth-logo { font-family: 'Bebas Neue'; font-size: 34px; letter-spacing: 1px; position: relative; z-index: 2; }
.auth-logo .nexa { color: var(--azul-claro); }
.auth-hero { position: relative; z-index: 2; }
.auth-hero h1 { font-size: 58px; line-height: .95; margin-bottom: 14px; }
.auth-hero p { color: var(--txt-mut); max-width: 380px; font-size: 16px; }
.auth-feats { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 12px; }
.auth-feats div { display: flex; align-items: center; gap: 10px; color: #cfd6e2; font-size: 14px; }
.auth-feats span { width: 22px; height: 22px; border-radius: 6px; background: rgba(30,71,184,.25); color: var(--azul-claro); display: grid; place-items: center; font-size: 13px; }

.auth-main { display: flex; align-items: center; justify-content: center; padding: 40px 24px; }
.auth-box { width: 100%; max-width: 400px; animation: fadeUp .45s ease both; }
.auth-box h2 { font-size: 40px; margin-bottom: 4px; }
.auth-box .sub { color: var(--txt-mut); margin-bottom: 26px; font-size: 15px; }
.auth-box .alt { text-align: center; margin-top: 18px; color: var(--txt-mut); font-size: 14px; }
.auth-box .link-mut { color: var(--txt-mut); font-size: 13px; }
.mobile-logo { display: none; font-family: 'Bebas Neue'; font-size: 30px; text-align: center; margin-bottom: 20px; }
@media (max-width: 880px) { .mobile-logo { display: block; } .mobile-logo .nexa { color: var(--azul-claro); } }

/* ============================================================
   RESPONSIVO AUTH (declarado por ultimo para vencer a cascata)
   Em <=880px o painel lateral some e o form ocupa a tela toda.
   ============================================================ */
@media (max-width: 880px) {
  .auth-wrap { grid-template-columns: 1fr; }
  .auth-side { display: none !important; }
  .mobile-logo { display: block; }
}
