/* ══════════════════════════════════════
   AUTH PAGES (Register / Login)
══════════════════════════════════════ */

.auth-body { background: var(--dark); min-height: 100vh; }

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

/* ── LEFT PANEL ── */
.auth-left {
  background: linear-gradient(135deg, #0a0a0f 0%, #1a0a10 50%, #0a0a1a 100%);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  padding: 48px 56px;
  position: relative;
  overflow: hidden;
}

.auth-left::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(230,57,70,0.12) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.auth-brand { margin-bottom: 48px; }
.brand-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
}

.auth-promo { flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 24px; }

.fight-card-mini {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 8px;
}

.fcm-vs {
  width: 48px;
  height: 48px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.fcm-fighters {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.fcm-fighters span {
  font-family: var(--font-cond);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
}

.fcm-date {
  margin-left: auto;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: right;
  white-space: nowrap;
}

.auth-promo h2 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: #fff;
}

.auth-promo p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.promo-stats {
  display: flex;
  gap: 32px;
}

.pstat {
  display: flex;
  flex-direction: column;
}
.pstat strong {
  font-family: var(--font-cond);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
}
.pstat span {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── RIGHT PANEL ── */
.auth-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 56px;
  background: var(--dark);
  overflow-y: auto;
}

.auth-card {
  width: 100%;
  max-width: 440px;
}

.auth-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.auth-sub {
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* ── FLASH MESSAGES ── */
.flash-msg {
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.flash-error { background: rgba(230,57,70,0.15); border: 1px solid var(--red); color: #ff6b7a; }
.flash-success { background: rgba(6,214,160,0.15); border: 1px solid var(--green); color: var(--green); }

/* ── PASS STRENGTH ── */
.pass-strength {
  height: 4px;
  background: var(--border);
  border-radius: 4px;
  margin-top: 8px;
  overflow: hidden;
}
.strength-bar {
  height: 100%;
  width: 0%;
  border-radius: 4px;
  transition: width 0.3s, background 0.3s;
}

/* ── SWITCH LINK ── */
.auth-switch {
  text-align: center;
  margin-top: 24px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .auth-wrapper { grid-template-columns: 1fr; }
  .auth-left { display: none; }
  .auth-right { padding: 40px 24px; min-height: 100vh; }
}
