/* Auth card (sign-in, magic link confirmation) */
.auth-card {
  background: #fdfdff;
  border: 0.5px solid #ccc6c3;
  border-radius: 4px;
  padding: 2rem 2.5rem 2.5rem;
  width: 100%;
  max-width: 420px;
  margin: 1rem auto 2rem;
}

.auth-subtitle {
  text-align: center;
  color: #555;
  margin-bottom: 1.75rem;
}

.auth-link {
  margin-top: 1.25rem;
  text-align: center;
  font-size: 0.9rem;
}

/* Dashboard profile cards */
.profile-card {
  background: #fdfdff;
  border: 0.5px solid #ccc6c3;
  border-radius: 4px;
  padding: 1.5rem 2rem;
  margin-bottom: 1.25rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.profile-card h2 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #888;
  margin-top: 0;
  margin-bottom: 1.25rem;
  text-align: left;
}

.profile-list {
  margin: 0;
  display: grid;
  grid-template-columns: 140px 1fr;
  row-gap: 0.75rem;
  column-gap: 1rem;
}

.profile-list dt {
  font-weight: 600;
  color: #555;
  font-size: 0.9rem;
  align-self: center;
}

.profile-list dd {
  margin: 0;
  color: #111;
  align-self: center;
}

.profile-list code {
  font-family: monospace;
  font-size: 0.85rem;
  background: #f0ece8;
  padding: 2px 6px;
  border-radius: 3px;
}


