@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

body {
  font-family: "Inter", sans-serif;
}

/* STEP SYSTEM (ONLY ONE SOURCE OF TRUTH) */
.step {
  display: none;
}

.step.active {
  display: block;
}

/* STEP PILL */
.step-pill {
  padding: 8px 16px;
  border-radius: 9999px;
  background: white;
  border: 1px solid #d1d5db;
  color: #6b7280;
  font-weight: 500;
  transition: 0.2s;
}

.step-pill.active {
  background: #2563eb;
  border-color: #2563eb;
  color: white;
}

/* INPUT */
.input {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  outline: none;
}

.input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}

/* BUTTONS */
.btn-primary {
  padding: 12px 24px;
  border-radius: 10px;
  background: #2563eb;
  color: white;
  font-weight: 600;
}

.btn-secondary {
  padding: 12px 24px;
  border-radius: 10px;
  background: #3f3f46;
  color: white;
  font-weight: 600;
}

.btn-success {
  padding: 12px 24px;
  border-radius: 10px;
  background: #16a34a;
  color: white;
  font-weight: 600;
}
