/* client/styles/auth.css — 2FA + Login Failed + Quit confirm screens */

.auth-screen {
  width: 100%;
  min-height: 100%;
  background: var(--color-red);
  color: var(--color-cream);
  padding: calc(var(--sat) + var(--space-xl)) var(--space-xl) calc(var(--sab) + var(--space-xl));
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  position: relative;
}

.auth-close {
  position: absolute;
  top: calc(var(--sat) + var(--space-md));
  right: var(--space-md);
}

.auth-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  text-align: center;
  margin-top: var(--space-2xl);
}

/* Login Failed screen */
.auth-failed {
  align-items: center;
  justify-content: center;
  text-align: center;
}
.auth-failed-cat {
  width: 50%;
  max-width: 200px;
  height: auto;
  color: var(--color-cream);
}
.auth-failed-body {
  font-family: var(--font-body);
  font-size: 18px;
  max-width: 320px;
}
.auth-reset-link {
  margin-top: var(--space-lg);
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--color-cream);
  text-decoration: underline;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
}

/* Quit confirmation */
.quit-confirm {
  align-items: center;
  justify-content: center;
  text-align: center;
}
.quit-question {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  max-width: 320px;
}
