/* ── Auth page layout ──────────────────────────────────────── */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
}

.auth-brand {
  width: 420px;
  flex-shrink: 0;
  background: var(--brown-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.auth-brand::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,107,53,.12);
  top: -80px; left: -80px;
}

.auth-brand::after {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,107,53,.08);
  bottom: -50px; right: -50px;
}

.auth-brand-inner { position: relative; z-index: 1; text-align: center; }

.auth-logo {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: 8px;
}

.auth-logo span { color: var(--orange); }

.auth-tagline {
  color: rgba(255,255,255,.6);
  font-size: .95rem;
  margin-bottom: 40px;
}

.auth-features { list-style: none; text-align: left; }

.auth-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  padding: 8px 0;
}

.auth-features li::before {
  content: '✓';
  width: 22px; height: 22px;
  background: rgba(255,107,53,.3);
  color: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Auth form side ────────────────────────────────────────── */
.auth-form-side {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 32px;
  background: var(--cream);
}

.auth-form-box {
  width: 100%;
  max-width: 420px;
}

.auth-form-box h1 {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.auth-form-box .auth-subtitle {
  color: var(--gray-600);
  font-size: .93rem;
  margin-bottom: 32px;
}

.auth-form { display: flex; flex-direction: column; gap: 18px; }

.auth-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.auth-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.auth-footer {
  text-align: center;
  margin-top: 24px;
  font-size: .9rem;
  color: var(--gray-600);
}

.auth-footer a { font-weight: 600; color: var(--orange); }

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 4px 0;
  color: var(--gray-400);
  font-size: .82rem;
}
.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-200);
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .auth-brand { display: none; }
  .auth-form-side { padding: 32px 20px; }
  .auth-row { grid-template-columns: 1fr; }
}
