/* ===== AUTH PAGES ===== */

.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px 40px;
  position: relative;
  overflow: hidden;
}

.auth-orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
}
.auth-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  opacity: 0.10;
  top: -240px; right: -140px;
}
.auth-orb-2 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(255,255,255,0.9) 0%, transparent 70%);
  opacity: 0.05;
  bottom: -180px; left: -140px;
}

.auth-card {
  width: 100%;
  max-width: 420px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  position: relative;
  z-index: 1;
}

.auth-header {
  text-align: center;
  margin-bottom: 28px;
}

.auth-title {
  font-size: 26px; font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.auth-subtitle {
  font-size: 14px; color: var(--text-secondary);
}

/* Form */
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.input-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.input-link {
  font-size: 12px; color: var(--gold);
  transition: var(--transition);
}
.input-link:hover { color: var(--gold-light); }

/* Password */
.password-wrap { position: relative; }
.password-toggle {
  position: absolute; right: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  opacity: 0.5;
  transition: var(--transition);
  padding: 4px;
}
.password-toggle:hover { opacity: 1; color: var(--text-secondary); }

/* Divider */
.auth-divider {
  display: flex; align-items: center; gap: 12px;
  margin: 20px 0;
  color: var(--text-muted);
  font-size: 12px;
}
.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* Social */
.social-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}
.social-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px;
  background: var(--bg-elevated);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 14px; font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
}
.social-btn:hover {
  border-color: var(--border-bright);
  color: var(--text-primary);
}

/* Switch */
.auth-switch {
  text-align: center;
  font-size: 14px; color: var(--text-secondary);
}
.auth-switch a {
  color: var(--gold); font-weight: 600;
  transition: var(--transition);
}
.auth-switch a:hover { color: var(--gold-light); }

/* ===== REGISTER STEPS ===== */

.reg-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 28px;
}

.reg-step {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.reg-step.active {
  background: var(--gold-dim);
  border-color: var(--gold);
  color: var(--gold-light);
  box-shadow: 0 0 0 4px var(--gold-dim);
}
.reg-step.done {
  background: var(--gold);
  border-color: var(--gold);
  color: #0a0a0a;
}
.reg-step.done::after {
  content: '✓';
  font-size: 14px;
}
.reg-step.done { font-size: 0; }

.reg-step-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  max-width: 60px;
}

/* Password strength */
.password-strength {
  display: flex; align-items: center; gap: 10px;
  margin-top: -8px;
}
.pw-bar {
  flex: 1; height: 3px;
  background: var(--bg-elevated);
  border-radius: 2px; overflow: hidden;
}
.pw-fill {
  height: 100%; border-radius: 2px;
  width: 0;
  transition: width 0.3s ease, background 0.3s ease;
}
.pw-label {
  font-size: 11px; font-weight: 600;
  min-width: 54px; text-align: right;
}

/* Promo block */
.promo-block {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px;
  background: var(--gold-dim);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
}
.promo-icon { font-size: 24px; line-height: 1; flex-shrink: 0; }
.promo-title { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.promo-sub   { font-size: 12px; color: var(--text-secondary); line-height: 1.5; }

/* Checkbox */
.checkbox-label {
  display: flex; align-items: flex-start; gap: 12px;
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] { display: none; }
.checkbox-box {
  width: 20px; height: 20px;
  border: 2px solid var(--border-bright);
  border-radius: 6px;
  background: var(--bg-elevated);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  margin-top: 1px;
}
.checkbox-label input:checked + .checkbox-box {
  background: var(--gold);
  border-color: var(--gold);
}
.checkbox-label input:checked + .checkbox-box::after {
  content: '✓';
  font-size: 12px; font-weight: 700;
  color: #0a0a0a;
}
.checkbox-text {
  font-size: 13px; color: var(--text-secondary); line-height: 1.6;
}
.checkbox-text a {
  color: var(--gold); font-weight: 500;
}
.checkbox-text a:hover { color: var(--gold-light); }
