/* Piruit — auth page specific styles */

:root {
  --bg: #0f0f23;
  --surface: #1a1a2e;
  --text: #e0e0ff;
  --muted: #aaa;
  --accent: #7c6cf7;
  --success: #00b894;
  --danger: #d63031;
  --warn: #fdcb6e;
  --radius: 12px;
  --gap: 14px;
}

#auth-screen {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100dvh;
  gap: var(--gap);
  padding: 20px;
}

.step {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 340px;
}

.step-label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  align-self: flex-start;
}

.error-text {
  color: var(--danger);
  font-size: 13px;
  display: none;
}
