.uh-auth-shell {
  max-width: 640px;
  margin: 0 auto;
}

.uh-auth-header {
  text-align: center;
  margin-bottom: 1.75rem;
}

.uh-auth-footer-note {
  text-align: center;
  margin-top: 1rem;
  color: var(--uh-color-text-soft);
  font-size: 0.92rem;
}

.uh-stepper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.uh-step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--uh-color-border);
  border-radius: 16px;
  background: #fff;
}

.uh-step.is-active {
  border-color: rgba(220, 52, 59, 0.28);
  background: #fff5f5;
}

.uh-step.is-done {
  border-color: rgba(25, 135, 84, 0.24);
  background: #f0fdf4;
}

.uh-step-index {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  background: #f3f4f6;
  color: #374151;
  flex-shrink: 0;
}

.uh-step.is-active .uh-step-index {
  background: var(--uh-color-primary);
  color: #fff;
}

.uh-step.is-done .uh-step-index {
  background: var(--uh-color-success);
  color: #fff;
}

.uh-step-title {
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
}

.uh-step-desc {
  font-size: 0.8rem;
  color: var(--uh-color-text-soft);
  line-height: 1.3;
}

.uh-step-panel {
  display: none;
}

.uh-step-panel.is-active {
  display: block;
}

.uh-password-meter {
  height: 8px;
  background: #eef2f7;
  border-radius: 999px;
  overflow: hidden;
  margin-top: 0.65rem;
}

.uh-password-meter-bar {
  height: 100%;
  width: 0;
  background: var(--uh-color-danger);
  transition: width 180ms ease;
}

.uh-password-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.5rem;
  font-size: 0.84rem;
  color: var(--uh-color-text-soft);
}

.uh-auth-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.uh-auth-actions > * {
  flex: 1 1 0;
}

@media (max-width: 575.98px) {
  .uh-stepper {
    grid-template-columns: 1fr;
  }

  .uh-auth-actions {
    flex-direction: column;
  }
}

.uh-auth-shell-sm {
  max-width: 560px;
}