.f1-steps {
  overflow: hidden;
  position: relative;
  margin-top: 20px;
  display: flex; /* Gunakan flexbox untuk tata letak sebaris */
  justify-content: space-between; /* Jarak sama antar langkah */
  align-items: center; /* Ikon sejajar secara vertikal */
}

.f1-progress {
  position: absolute;
  top: 24px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ddd;
  z-index: 0;
}

.f1-progress-line {
  position: absolute;
  top: 0;
  left: 0;
  height: 1px;
  background: #404285;
  transition: width 0.3s ease; /* Animasi progres */
}

.f1-step {
  position: relative;
  width: auto; /* Hilangkan batasan width spesifik */
  text-align: center;
  flex: 1; /* Masing-masing langkah mengambil ruang yang sama */
  margin: 0 5px; /* Jarak antar langkah */
  box-sizing: border-box; /* Pastikan padding tidak memengaruhi ukuran */
}

.f1-step-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-top: 4px;
  background: #ddd;
  font-size: 16px;
  color: #fff;
  line-height: 40px;
  border-radius: 50%; /* Lingkaran */
}

.f1-step.activated .f1-step-icon {
  background: #fff;
  border: 1px solid #404285;
  color: #404285;
  line-height: 38px;
}

.f1-step.active .f1-step-icon {
  width: 48px;
  height: 48px;
  margin-top: 0;
  background: #404285;
  font-size: 22px;
  line-height: 48px;
}

.f1-step p {
  color: #ccc;
  margin-top: 8px;
}

.f1-step.activated p {
  color: #404285;
}

.f1-step.active p {
  color: #404285;
}

.f1 fieldset {
  display: none;
  text-align: left;
}

.f1-buttons {
  text-align: right;
}

.f1 .input-error {
  border-color: #f35b3f;
}

fieldset {
    border: 2px solid #404285;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    background-color: #f9f9f9;
}

legend {
    font-weight: bold;
    font-size: 1.1rem;
    color: #404285;
    padding: 0 10px;
  text-align: center;
}