/* ── Auth Page ───────────────────────────────────────── */

body.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
}

.auth-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 20px;
  padding: 40px 32px;
  width: 100%;
  max-width: 400px;
  margin: 0 16px;

  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.12),
    0 2px 8px rgba(0, 0, 0, 0.06);
}

.auth-title {
  margin: 0 0 32px 0;
  font-size: 26px;
  font-weight: 700;
  color: #1f2937;
  letter-spacing: -0.5px;
}

.auth-fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.auth-fields input {
  width: 100%;
  padding: 13px 14px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #f9fafb;
  font-size: 15px;
  color: #1f2937;
  outline: none;
  transition: all 0.15s ease;
  box-sizing: border-box;
}

.auth-fields input::placeholder {
  color: #9ca3af;
}

.auth-fields input:focus {
  border-color: #6366f1;
  background: white;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.auth-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Primär — gleiche Farbe wie dein saveRoadBtn */
.btn-primary {
  width: 100%;
  padding: 13px 12px;
  border-radius: 10px;
  border: none;
  background: #4f46e5;
  color: white;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
}

.btn-primary:hover {
  background: #4338ca;
  transform: translateY(-1px);
}

/* Sekundär — gleiche Farbe wie dein cancelRoadBtn */
.btn-secondary {
  width: 100%;
  padding: 13px 12px;
  border-radius: 10px;
  border: none;
  background: rgba(0, 0, 0, 0.05);
  color: #374151;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
}

.btn-secondary:hover {
  background: rgba(0, 0, 0, 0.08);
}

/* Ghost — nur Rahmen, kein Hintergrund */
.btn-ghost {
  width: 100%;
  padding: 13px 12px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: transparent;
  color: #374151;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
}

.btn-ghost:hover {
  background: rgba(0, 0, 0, 0.03);
}