/* style.css */
.multistep-form-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
}

.steps-indicator {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  position: relative;
}

.steps-indicator::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: #e5e5e5;
  z-index: 1;
}

.step {
  background: #fff;
  padding: 10px 20px;
  border-radius: 20px;
  border: 2px solid #e5e5e5;
  position: relative;
  z-index: 2;
}

.step.active {
  border-color: #96588a;
  color: #96588a;
}

.step-content {
  display: none;
}

.step-content.active {
  display: block;
}

.form-row {
  margin-bottom: 20px;
}

.form-row label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.form-row input,
.form-row select {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

button {
  background: #96588a;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background: #864f7b;
}

.prev-step {
  background: #666;
  margin-right: 10px;
}
