/* ============================================================
   Admin Auth Pages (login, TOTP, invite accept)
   ============================================================ */

.admin-auth {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f9fafb;
  padding: 16px;
}

.admin-auth__container {
  width: 100%;
  max-width: 400px;
}

.admin-auth__logo {
  text-align: center;
  margin-bottom: 32px;
}

.admin-auth__title {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-foreground);
}

.admin-auth__subtitle {
  font-size: 14px;
  color: var(--color-muted-foreground);
  margin-top: 4px;
}

.admin-auth__card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.admin-auth__heading {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.admin-auth__text {
  font-size: 14px;
  color: var(--color-muted-foreground);
  margin-bottom: 20px;
  line-height: 1.5;
}

.admin-auth__qr {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.admin-auth__qr svg {
  width: 200px;
  height: 200px;
}

.admin-auth__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.admin-auth__inline-form {
  margin: 0;
}
