.auth-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--canvas);
}

.auth-card {
  width: min(420px, 100%);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px;
  display: grid;
  gap: 14px;
}

.auth-brand .auth-logo {
  display: block;
  width: auto;
  height: 48px;
  max-width: 220px;
  object-fit: contain;
  margin-bottom: 4px;
}

.auth-brand .brand {
  margin: 0;
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auth-card h1 {
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.auth-field {
  display: grid;
  gap: 6px;
}

.auth-field label {
  font-size: 13px;
  font-weight: 700;
}

.auth-field input {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--dark);
  transition: border-color 0.15s ease;
}

.auth-field input:hover { border-color: #cfd4dc; }

.auth-field input:focus {
  border-color: var(--red);
  outline: none;
  box-shadow: 0 0 0 3px rgba(233, 25, 37, 0.12);
}

.auth-error {
  margin: 0;
  color: #991b1b;
  font-size: 14px;
}

.auth-muted {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.auth-muted a {
  color: var(--red);
  font-weight: 700;
  text-decoration: none;
}

.auth-muted a:hover { text-decoration: underline; }

.btn-block { width: 100%; }

.is-hidden { display: none !important; }
