/* ===== AUTH PAGES (login + register) ===== */

.auth-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-hero);
  padding: var(--space-6);
  position: relative;
}

.auth-wrapper::before {
  content: '';
  position: absolute;
  font-size: 20rem;
  opacity: 0.04;
  right: 5%;
  bottom: 5%;
  pointer-events: none;
}

.auth-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-12);
  width: 100%;
  max-width: 480px;
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 1;
}

.auth-logo {
  text-align: center;
  margin-bottom: var(--space-8);
}

.auth-logo img {
  height: 72px;
  width: auto;
  margin: 0 auto;
}

.auth-title {
  font-size: var(--text-3xl);
  font-weight: var(--weight-black);
  color: var(--color-primary);
  text-align: center;
  margin-bottom: var(--space-2);
}

.auth-subtitle {
  color: var(--color-text-muted);
  text-align: center;
  margin-bottom: var(--space-8);
  font-size: var(--text-base);
}

.auth-switch {
  text-align: center;
  margin-top: var(--space-6);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.auth-switch a {
  color: var(--color-primary-light);
  font-weight: var(--weight-bold);
}

.auth-switch a:hover {
  color: var(--color-primary);
}

.password-toggle {
  position: absolute;
  right: var(--space-3);
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: var(--text-lg);
  padding: var(--space-1);
  line-height: 1;
}

@media (max-width: 520px) {
  .auth-card {
    padding: var(--space-8) var(--space-6);
  }
}
