.auth-view {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6) var(--space-4);
  background: var(--bg-primary);
}

.auth-container {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  animation: slideUp var(--transition-slow) ease;
}

/* Logo */
.auth-logo {
  text-align: center;
  margin-bottom: var(--space-2);
}

.auth-logo-text {
  display: block;
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: var(--space-2);
}

.auth-tagline {
  color: var(--text-secondary);
  font-size: var(--text-sm);
}

/* Onglets login / signup */
.auth-tabs {
  display: flex;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-1);
  gap: var(--space-1);
}

.auth-tab {
  flex: 1;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  min-height: 40px;
}

.auth-tab.active {
  background: var(--accent);
  color: white;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

/* Formulaires */
.auth-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  box-shadow: var(--shadow-md);
}

.reset-description {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Messages d'état */
.auth-error {
  background: var(--error-subtle);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: var(--error);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  animation: shake 0.4s ease;
  line-height: 1.5;
}

.auth-success {
  background: var(--accent-subtle);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--accent);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  line-height: 1.5;
}
