﻿/* ── Auth Layout ──────────────────────────────────────────────────────────── */
.auth-page {
  display: flex;
  min-height: 100vh;
}

.auth-left {
  width: 420px;
  flex-shrink: 0;
  background: var(--color-navy);
  color: #fff;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.auth-logo { display: flex; align-items: center; gap: 10px; }
.auth-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.auth-hero h1 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 12px;
}
.auth-hero p { font-size: 15px; color: #94A3B8; line-height: 1.6; }

.auth-feature-list { display: flex; flex-direction: column; gap: 12px; margin-top: auto; }

.auth-feature {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: #CBD5E1;
}
.auth-feature-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--color-accent);
}

.auth-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: var(--color-surface);
}

.auth-card {
  width: 100%;
  max-width: 440px;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  padding: 2.5rem;
}

.auth-form-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.auth-form-subtitle { font-size: 14px; color: var(--color-text-mid); }
.auth-form-header { margin-bottom: 1.5rem; }

.auth-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-mid);
}
.auth-back-link:hover {
  color: var(--color-primary);
  text-decoration: none;
}

.auth-forgot { text-align: right; font-size: 13px; }

.divider-label {
  position: relative;
  text-align: center;
  font-size: 12px;
  color: var(--color-text-light);
  margin: 4px 0;
}
.divider-label::before {
  content: '';
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 1px;
  background: var(--color-border);
  z-index: 0;
}
.divider-label span {
  position: relative;
  background: var(--color-white);
  padding: 0 12px;
  z-index: 1;
}

.auth-terms {
  display: flex; gap: 10px; align-items: flex-start;
  background: var(--color-surface-mid);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 13px;
  color: var(--color-text-mid);
  line-height: 1.5;
}
.auth-terms i { color: var(--color-primary); flex-shrink: 0; margin-top: 2px; }

.auth-footer-text {
  text-align: center;
  font-size: 14px;
  color: var(--color-text-mid);
  margin-top: 1.25rem;
}
