/* ========= registration.css =========
   Only the tiny extras unique to the wizard.
   Everything structural lives in login.css.
   =================================== */

/* Left‑column illustration */
.wizard-illustration img {
  width: 48px;
  height: 48px;
}

/* Header text */
.wizard-form h2 {
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 8px;
}
.wizard-form p {
  font-size: 14px;
  color: var(--muted-foreground);
  margin: 0 0 24px;
}

.wizard-icon img {
  width: 48px;
  height: 48px;
  margin-bottom: 32px;
}

/* Checkbox list helper (step‑1) */
.checkbox-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}
.checkbox-line {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: center;
  gap: 12px;
}

.login-form textarea {
  width: 100%;
  min-height: 96px;
  padding: 14px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 16px;
  resize: vertical;
  transition: border 0.15s ease-in-out;
}

.login-form textarea:focus {
  outline: none;
  border: 2px solid var(--primary);
}

/* Progress dots */
.progress-steps {
  display: flex;
  gap: 8px;
  margin-top: 32px;
}
.progress-circle {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
}
.progress-circle.active {
  background: var(--primary);
}
.progress-text {
  margin-top: 8px;
  font-size: 12px;
  color: var(--muted-foreground);
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .wizard-illustration,
  .wizard-form h2,
  .wizard-form p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}
