/* ══════════════════════════════════════════════════════════════════════
   QualiCall — Auth Pages
   ══════════════════════════════════════════════════════════════════════ */

.auth-page {
  min-height: 100vh;
  display: flex;
  background: var(--white-ice);
}

.auth-sidebar {
  width: 420px;
  background: var(--blue-deep);
  padding: 48px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.auth-sidebar::before {
  content: '';
  position: absolute;
  bottom: -100px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(46,211,168,.2) 0%, transparent 70%);
  border-radius: 50%;
}
.auth-sidebar::after {
  content: '';
  position: absolute;
  top: 20%; left: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(47,111,237,.2) 0%, transparent 70%);
  border-radius: 50%;
}
.auth-sidebar__content { position: relative; z-index: 2; }
.auth-sidebar__brand {
  display: flex; align-items: center; gap: 10px;
  font-size: 22px; font-weight: 800; color: var(--white);
  margin-bottom: 56px;
}
.auth-sidebar h2 { color: var(--white); margin-bottom: 16px; font-size: 1.75rem; }
.auth-sidebar p  { color: rgba(255,255,255,.65); font-size: 14px; line-height: 1.7; margin-bottom: 40px; }
.auth-highlights  { display: flex; flex-direction: column; gap: 16px; }
.auth-highlight {
  display: flex; align-items: flex-start; gap: 12px;
  color: rgba(255,255,255,.8); font-size: 13px; line-height: 1.5;
}
.auth-highlight-icon {
  width: 28px; height: 28px; border-radius: var(--radius-sm);
  background: rgba(46,211,168,.2); color: var(--green-mint);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0;
}

.auth-form-area {
  flex: 1; display: flex; align-items: center; justify-content: center;
  padding: 48px;
}
.auth-form-card {
  width: 100%; max-width: 420px;
}
.auth-form-card__title { font-size: 1.5rem; font-weight: 800; margin-bottom: 6px; }
.auth-form-card__subtitle { font-size: 14px; color: var(--gray-text); margin-bottom: 32px; }
.auth-form { display: flex; flex-direction: column; gap: 20px; }
.auth-submit { margin-top: 8px; width: 100%; justify-content: center; }
.auth-switch { text-align: center; font-size: 13px; color: var(--gray-text); margin-top: 20px; }
.auth-switch a { color: var(--blue-vivid); font-weight: 600; }
.auth-switch a:hover { text-decoration: underline; }
.auth-divider {
  display: flex; align-items: center; gap: 12px;
  font-size: 12px; color: var(--gray-light); margin: 8px 0;
}
.auth-divider::before, .auth-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--gray-border);
}

@media (max-width: 768px) {
  .auth-sidebar { display: none; }
  .auth-form-area { padding: 32px 24px; }
}
