/* ============================================
   AUTH PAGES — login / register
   ============================================ */
.auth-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  padding-top: var(--header-h);
  position: relative;
  overflow: hidden;
}
@media (max-width: 900px) {
  .auth-shell { grid-template-columns: 1fr; }
  .auth-visual { display: none !important; }
}

.auth-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-9) var(--sp-7);
  position: relative;
  z-index: 5;
}
.auth-form {
  width: 100%;
  max-width: 460px;
  animation: modal-in var(--t-slow) var(--ease-out);
}
.auth-form h1 { font-size: var(--fs-3xl); margin-bottom: var(--sp-3); }
.auth-form .auth-sub { color: var(--text-muted); margin-bottom: var(--sp-6); font-size: var(--fs-md); }

.auth-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 70% 60% at 50% 30%, rgba(255,140,66,0.3), transparent 70%),
    linear-gradient(160deg, #0f2942 0%, #1e3a5f 50%, #ff8c42 130%);
  overflow: hidden;
  border-left: 1px solid rgba(245, 230, 211, 0.06);
}
.auth-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,230,211,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,230,211,0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}
.auth-visual-content {
  position: relative;
  text-align: center;
  color: var(--cream-100);
  max-width: 380px;
  padding: var(--sp-5);
  z-index: 2;
}
.auth-visual-content h2 {
  font-size: 48px;
  margin-bottom: var(--sp-4);
  line-height: 1.1;
  background: var(--gradient-cream);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.auth-visual-content p { color: rgba(245,230,211,0.7); margin-bottom: var(--sp-6); }

.auth-bullets {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  text-align: left;
  margin-top: var(--sp-5);
}
.auth-bullet {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  color: rgba(245,230,211,0.85);
  font-size: var(--fs-sm);
}
.auth-bullet svg { color: var(--orange-500); flex-shrink: 0; margin-top: 2px; }

.auth-form .form-control { background: rgba(30, 58, 95, 0.4); }

.auth-bottom-link {
  text-align: center;
  margin-top: var(--sp-5);
  color: var(--text-muted);
  font-size: var(--fs-sm);
}
.auth-bottom-link a { color: var(--orange-500); font-weight: 600; }
.auth-bottom-link a:hover { text-decoration: underline; }
