.aurora-auth-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #0c141d, #121c28);
  font-family: "Geist Mono UltraLight", ui-monospace, monospace;
  font-weight: 200;
  color: #e5edf6;
}

.aurora-auth-overlay.is-hidden {
  display: none;
}

.aurora-auth-card {
  width: min(420px, 88vw);
  padding: 28px 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  background: #16202e;
  display: grid;
  gap: 14px;
}

.aurora-auth-card::before {
  content: "";
  display: block;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.13), transparent);
  margin: -28px 18px 0;
}

.aurora-auth-eyebrow {
  font-family: "Geist Pixel Square", ui-sans-serif, sans-serif;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #58a6ff;
}

.aurora-auth-card h1 {
  font-family: "Geist Pixel Square", ui-sans-serif, sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: #e5edf6;
}

.aurora-auth-card p {
  color: #9bb0c8;
  font-size: 12px;
  line-height: 1.5;
}

.aurora-auth-row {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.aurora-auth-card input {
  flex: 1;
  background: #0b1219;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  color: #e5edf6;
  font-family: "Geist Mono UltraLight", ui-monospace, monospace;
  font-weight: 200;
  font-size: 13px;
  padding: 9px 12px;
  outline: none;
  transition: box-shadow 160ms cubic-bezier(0.2, 0.65, 0.2, 1), border-color 160ms;
}

.aurora-auth-card input:focus {
  border-color: rgba(88, 166, 255, 0.36);
  box-shadow: 0 0 12px rgba(88, 166, 255, 0.14), 0 0 4px rgba(88, 166, 255, 0.1);
}

.aurora-auth-card button {
  border: 1px solid rgba(88, 166, 255, 0.36);
  background: rgba(88, 166, 255, 0.10);
  color: #58a6ff;
  font-family: "Geist Mono UltraLight", ui-monospace, monospace;
  font-weight: 200;
  font-size: 12px;
  padding: 9px 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: box-shadow 160ms cubic-bezier(0.2, 0.65, 0.2, 1), color 160ms;
}

.aurora-auth-card button:hover,
.aurora-auth-card button:focus-visible {
  outline: none;
  color: #e5edf6;
  box-shadow: inset 0 0 0 1px rgba(88, 166, 255, 0.36), 0 0 18px rgba(88, 166, 255, 0.12);
}

.aurora-auth-error {
  color: #f87171;
  font-size: 11px;
  min-height: 14px;
}
