.auth-wrap {
  min-height: calc(100vh - 67px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  background: var(--ng-bg);
}
.auth-card {
  width: 100%;
  background: #fff;
  border: 1px solid var(--ng-border);
  border-top: 4px solid var(--ng-red);
  border-radius: 2px;
  padding: 2.5rem 2.25rem 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}
.auth-card h1 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  margin-bottom: 0.2rem;
}
.auth-card .subtitle {
  color: var(--ng-muted);
  font-size: 0.88rem;
  margin-bottom: 1.75rem;
}
.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #444;
  margin-bottom: 0.3rem;
}
.form-control {
  border-radius: 2px;
  border-color: #ddd;
  font-size: 0.95rem;
  padding: 0.6rem 0.85rem;
}
.form-control:focus {
  border-color: var(--ng-red);
  box-shadow: 0 0 0 3px rgba(192,57,43,0.12);
}
.btn-submit {
  background: var(--ng-red);
  border-color: var(--ng-red);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  border-radius: 2px;
  padding: 0.65rem;
  transition: background 0.15s;
}
.btn-submit:hover {
  background: var(--ng-red-dk);
  border-color: var(--ng-red-dk);
  color: #fff;
}
.section-divider {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ng-muted);
  border-bottom: 1px solid var(--ng-border);
  padding-bottom: 0.4rem;
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}
.auth-footer {
  text-align: center;
  font-size: 0.85rem;
  color: var(--ng-muted);
  margin-top: 1.25rem;
}
.auth-footer a {
  color: var(--ng-red);
  font-weight: 600;
  text-decoration: none;
}
.auth-footer a:hover { text-decoration: underline; }
