/* Layout das telas de acesso (home e login administrativo) */

body.auth-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}

.auth-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}
.auth-brand-mark {
  width: 32px;
  height: 32px;
  border-radius: var(--radius);
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.auth-card {
  width: 100%;
  max-width: 420px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}

.auth-eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  margin-bottom: 8px;
}
.auth-card h1 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.auth-card .auth-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.input-code {
  height: 48px;
  font-family: var(--font-mono);
  font-size: 17px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}
.field-hint {
  margin-top: 6px;
  font-size: 12px;
  color: var(--text-muted);
}

.auth-footer {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}
.auth-footer a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
}
.auth-footer a:hover { color: var(--primary); text-decoration: underline; }
