/* ===== AUTH PAGE LAYOUT ===== */
.auth-body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(
    ellipse at top left,
    #1e1b4b 0%,
    #0f0f1a 40%,
    #1a0a2e 100%
  );
  padding: 20px;
}

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

/* ===== AUTH CARD ===== */
.auth-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* ===== LOGO ===== */
.auth-logo {
  text-align: center;
  margin-bottom: 28px;
}
.logo-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 8px;
}
.auth-logo h1 {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.auth-logo p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 4px;
}

/* ===== TABS ===== */
.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-sm);
  padding: 4px;
  gap: 4px;
  margin-bottom: 24px;
}
.tab-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  padding: 9px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.9rem;
  transition: var(--transition);
}
.tab-btn.active {
  background: var(--accent-blue);
  color: white;
  box-shadow: 0 2px 10px rgba(99, 102, 241, 0.4);
}
.tab-btn:not(.active):hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
}

/* ===== PASSWORD TOGGLE ===== */
.password-wrap {
  position: relative;
}
.password-wrap input {
  padding-right: 42px;
  width: 100%;
}
.eye-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 1rem;
  opacity: 0.6;
  transition: var(--transition);
  user-select: none;
}
.eye-toggle:hover {
  opacity: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 480px) {
  .auth-card {
    padding: 28px 20px;
  }
  .auth-logo h1 {
    font-size: 1.5rem;
  }
}
