/* Auth base layout: shared shell for login, password reset, and setup screens. */

.auth-body {
  min-height: 100vh;
  margin: 0;
  background: var(--secondary-color);
  font-family: Arial, sans-serif;
}

.auth-html-dark {
  background: #020814;
}

.auth-shell {
  width: min(420px, calc(100vw - 32px));
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 0;
  box-sizing: border-box;
}

.auth-brand {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.auth-logo {
  max-width: 180px;
  max-height: 88px;
  object-fit: contain;
}

.auth-brand-name {
  font-size: 34px;
  font-weight: 700;
  color: var(--primary-color);
}

.auth-shell .page-header {
  display: block;
  margin-bottom: 18px;
  text-align: center;
}

.auth-shell .page-header h1 {
  margin: 0;
  color: var(--primary-color);
}

.auth-shell .page-header p {
  margin: 6px 0 0;
  color: #68768a;
}

.auth-shell .form-panel {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
}

.auth-shell .form-grid {
  grid-template-columns: 1fr;
}

.auth-shell .form-group input {
  width: 100%;
  box-sizing: border-box;
}

.auth-shell .form-actions {
  justify-content: flex-end;
}

.auth-shell .form-hint {
  margin-bottom: 0;
}
