/* =========================
   CONTAINER
========================= */

.container {
  max-width: 520px;
  margin: 60px auto;
  font-family: Inter, Arial, sans-serif;
  background: #ffffff;
  color: #111;
  padding: 10px;
}

/* =========================
   STEPS (ANIMATION)
========================= */

.step {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.25s ease;
}

.step.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   INPUTS (LIGHT SAAS STYLE)
========================= */

input,
textarea,
select {
  width: 100%;
  padding: 12px 14px;
  margin: 12px 0;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  background: #ffffff;
  font-size: 14px;
  color: #111;
  outline: none;
  transition: 0.2s ease;
}

/* focus = premium feel */
input:focus,
textarea:focus,
select:focus {
  border-color: #4c5cff;
  box-shadow: 0 0 0 3px rgba(76, 92, 255, 0.12);
}

/* placeholders */
input::placeholder,
textarea::placeholder {
  color: #aaa;
}

/* =========================
   BUTTONS (HIGH-CONVERSION CTA)
========================= */

button {
  background: #111;
  color: #fff;
  border: none;
  padding: 12px 14px;
  border-radius: 10px;
  cursor: pointer;
  margin-right: 8px;
  font-weight: 600;
  transition: 0.15s ease;
}

/* microinteraction */
button:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

button:active {
  transform: scale(0.98);
}

/* =========================
   PROGRESS BAR (SAAS STYLE)
========================= */

.progress-bar {
  width: 100%;
  height: 6px;
  background: #f0f0f0;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 10px;
}

#progressFill {
  height: 100%;
  width: 25%;
  background: #4c5cff;
  transition: width 0.3s ease;
  box-shadow: 0 0 10px rgba(76, 92, 255, 0.25);
}

/* progress text */
#progressText {
  font-size: 12px;
  color: #777;
  text-align: right;
  margin-bottom: 20px;
}

/* =========================
   UX POLISH
========================= */

label {
  font-size: 13px;
  color: #444;
  display: block;
  margin-top: 10px;
}

/* =========================
   RESPONSIVE (optional)
========================= */

@media (max-width: 600px) {
  .container {
    margin: 30px auto;
    padding: 0 16px;
  }
}