.auth-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
  background: var(--surface-app);
}

.auth-card {
  background: var(--surface-panel);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-10);
  width: 100%;
  max-width: 420px;
}

.auth-brand { text-align: center; margin-bottom: var(--space-8); }
.auth-brand img { height: 40px; margin-bottom: var(--space-3); }
.auth-brand__tagline {
  color: var(--text-muted);
  font-size: var(--text-small);
  margin: 0;
}

.auth-card h1 {
  font-size: var(--text-h2);
  text-align: center;
  margin: 0 0 var(--space-6);
}

.auth-link {
  display: block;
  text-align: center;
  margin-top: var(--space-4);
  font-size: var(--text-small);
  color: var(--brand-blue);
  text-decoration: none;
}
.auth-link:hover { text-decoration: underline; }
