.auth-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  gap: 2rem;
  background: radial-gradient(50% 40% at 50% 0%, rgba(255,60,0,0.10), transparent), var(--color-bg);
}
.auth-brand { font-weight: 800; font-size: 1.05rem; display: flex; align-items: center; gap: 0.6rem; }
.auth-brand .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--color-primary); }
.auth-card { width: 100%; max-width: 400px; }
.auth-card h1 { font-size: 1.4rem; }
.auth-forgot {
  display: block;
  text-align: right;
  font-size: 0.82rem;
  color: var(--color-muted);
  margin-bottom: 1rem;
  margin-top: -0.25rem;
  transition: color 0.15s;
}
.auth-forgot:hover { color: var(--color-primary); }

.auth-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.1rem 0;
  color: var(--color-muted);
  font-size: 0.78rem;
}
.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-border);
}

/* Sucesso registro */
.sucesso-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--color-success-soft);
  border: 1px solid rgba(34,197,94,.2);
  color: var(--color-success);
  font-size: 1.5rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}

@media (max-width: 420px) {
  .auth-card { padding: 1.5rem; }
}
