/* AUTH */
.auth-page { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; }
.auth-side {
  background: linear-gradient(160deg, #0B2545 0%, #1A4072 60%, #0D9488 130%);
  color: #fff; padding: 40px;
  display: flex; flex-direction: column;
}
.auth-side-inner { display: flex; flex-direction: column; flex: 1; }
.auth-side-stats { display: flex; gap: 28px; margin-top: 32px; }
.auth-side-stats div { font-size: 13px; color: rgba(255,255,255,0.7); display: flex; flex-direction: column; gap: 2px; }
.auth-side-stats strong { font-family: 'Fraunces', serif; font-size: 24px; color: #fff; }
.auth-form-wrap { display: flex; align-items: center; justify-content: center; padding: 40px; }
.auth-form-box { width: 100%; max-width: 420px; }
.auth-demo-note {
  margin-top: 22px; padding: 12px 14px; background: var(--bg-2);
  border: 1px dashed var(--border-strong); border-radius: 8px;
  font-size: 12.5px; color: var(--ink-soft); line-height: 1.5;
}
@media (max-width: 880px) {
  .auth-page { grid-template-columns: 1fr; }
  .auth-side { display: none; }
}
