/* auth.css — Auth pages extra styles */
.auth-bg {
  min-height: 100vh;
  display: flex;
  background: var(--bg-base);
  position: relative;
  overflow: hidden;
}
.auth-bg::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(99,102,241,0.12) 0%, transparent 70%);
  top: -200px; right: -150px;
  pointer-events: none;
}
.auth-bg::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(139,92,246,0.1) 0%, transparent 70%);
  bottom: -150px; left: -100px;
  pointer-events: none;
}
.auth-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  position: relative;
  z-index: 1;
  display: none;
}
.auth-right {
  width: 480px;
  min-height: 100vh;
  background: var(--bg-surface);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 48px;
  position: relative;
  z-index: 1;
}
.auth-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}
.auth-logo-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem; color: white;
  flex-shrink: 0;
}
.auth-logo-text { font-size: 1.1rem; font-weight: 700; color: var(--text-primary); }
.auth-logo-text span { color: var(--accent); }
.auth-heading { font-size: 1.6rem; font-weight: 800; color: var(--text-primary); margin-bottom: 8px; }
.auth-subheading { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 32px; line-height: 1.6; }
.auth-form-footer { text-align: center; margin-top: 24px; font-size: 0.82rem; color: var(--text-muted); }
.auth-form-footer a { color: var(--accent); font-weight: 500; }
.auth-divider { display: flex; align-items: center; gap: 12px; margin: 20px 0; }
.auth-divider::before, .auth-divider::after { content:''; flex:1; height:1px; background:var(--border); }
.auth-divider span { font-size: 0.75rem; color: var(--text-muted); white-space: nowrap; }
.strength-wrap { margin-top: 8px; }
.strength-bars { display: flex; gap: 4px; margin-top: 6px; }
.strength-bar-seg { flex: 1; height: 4px; border-radius: 2px; background: var(--border); transition: background 0.3s; }
.strength-bar-seg.active-1 { background: #ef4444; }
.strength-bar-seg.active-2 { background: #f59e0b; }
.strength-bar-seg.active-3 { background: #3b82f6; }
.strength-bar-seg.active-4 { background: #10b981; }
.strength-bar-seg.active-5 { background: #10b981; }
.strength-label-text { font-size: 0.72rem; color: var(--text-muted); margin-top: 4px; }
.pw-req-list { margin-top: 10px; display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.pw-req-item { display: flex; align-items: center; gap: 6px; font-size: 0.74rem; color: var(--text-muted); }
.pw-req-item .req-icon { width: 14px; height: 14px; border-radius: 50%; border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 8px; transition: all 0.2s; }
.pw-req-item.met .req-icon { background: var(--green); border-color: var(--green); color: white; }
.pw-req-item.met { color: var(--green); }
.otp-inputs { display: flex; gap: 10px; justify-content: center; }
.otp-input { width: 52px; height: 56px; text-align: center; font-size: 1.4rem; font-weight: 700; background: var(--bg-input); border: 2px solid var(--border); border-radius: 10px; color: var(--text-primary); outline: none; transition: border-color 0.2s; }
.otp-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-light); }
.security-badge { display: flex; align-items: center; gap: 8px; background: var(--green-light); border: 1px solid rgba(16,185,129,0.2); border-radius: 8px; padding: 8px 14px; margin-bottom: 20px; font-size: 0.78rem; color: var(--green); }
.security-badge svg { width: 14px; height: 14px; flex-shrink: 0; }
.login-attempts-bar { height: 3px; background: var(--border); border-radius: 2px; margin-top: 6px; }
.login-attempts-fill { height: 100%; border-radius: 2px; background: var(--red); transition: width 0.3s; }
@media (min-width: 1024px) { .auth-left { display: flex; } }
@media (max-width: 600px) { .auth-right { width: 100%; padding: 32px 24px; border: none; } }
