#particles {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none;
}

body {
  background: #0a0a0d;
  font-family: 'Inter', system-ui, sans-serif;
}

.bg { display: none; }

.wrap {
  position: relative; z-index: 1;
}

.brand {
  flex-direction: column;
  gap: 18px;
}

.logo {
  position: relative;
  width: 72px; height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #232329;
  background: none;
  box-shadow: none;
  font-size: 0;
}
.logo img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.logo::before {
  content: "";
  position: absolute; inset: -18px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216,216,224,0.18), transparent 70%);
  z-index: -1;
  animation: pulse 3.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(0.94); opacity: 0.7; }
  50% { transform: scale(1.05); opacity: 1; }
}

.brand h1 {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 5vw, 2.2rem);
  letter-spacing: -0.01em;
}

.tag {
  color: #87878f;
  margin-bottom: 28px;
}

.card {
  background: #131318;
  border: 1px solid #232329;
  border-radius: 16px;
}

input {
  background: #1c1c24;
  border: 1px solid #232329;
}

.btn {
  background: #f2f2f5;
  color: #0a0a0d;
  box-shadow: none;
}
.btn:hover {
  opacity: 0.88;
  filter: none;
}

.alt a {
  color: #f2f2f5;
}

.auth-link {
  display: block;
  margin: 14px auto 0;
  padding: 0;
  border: 0;
  background: none;
  color: #a9a9b4;
  font: inherit;
  font-size: 0.82rem;
  cursor: pointer;
}
.auth-link:hover { color: #f2f2f5; }
#reset-panel h2 { margin: 0 0 8px; font-size: 1.1rem; }
.reset-help { color: #87878f; font-size: 0.82rem; line-height: 1.45; margin: 0 0 18px; }
#reset-code-step { margin-top: 16px; }
#reset-error { margin-top: 10px; }

@media (prefers-reduced-motion: reduce) {
  .logo::before { animation: none; }
}
