body {
  background-image: linear-gradient(to right top, #d16ba5, #c777b9, #ba83ca, #aa8fd8, #9a9ae1, #8aa7ec, #79b3f4, #69bff8, #52cffe, #41dfff, #46eefa, #5ffbf1);
  font-family: 'Segoe UI', sans-serif;
}

.form-container {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
  max-width: 650px;
  margin: 4rem auto;
  min-height: 540px;
  position: relative;
}

.form-step {
  display: none;
  min-height: 400px;
}

.form-step.active {
  display: block;
}

.btn-custom {
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  border: none;
  color: #fff;
  font-weight: bold;
}

.btn-custom:hover {
  background: linear-gradient(135deg, #0072ff, #00c6ff);
}

.input-group-text {
  background-color: #e9ecef;
}

/* Step Progress Bar */
.step-indicator {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.step {
  flex: 1;
  text-align: center;
  position: relative;
  color: #999;
  font-weight: 500;
}
.stepname{
    display: none;
}
.step::before {
  content: attr(data-step);
  display: inline-block;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #e0e0e0;
  color: #555;
  line-height: 35px;
  margin-bottom: 0.25rem;
}

.step.active::before {
  background: #007bff;
  color: #fff;
  font-weight: bold;
}

.step::after {
  content: '';
  position: absolute;
  top: 17px;
  right: -59%;
  width: 100%;
  height: 4px;
  background-color: #ccc;
}

.step:last-child::after {
  display: none;
}

.step.completed::after {
  background-color: #007bff;
}

.step.completed::before {
    background: #007bff;
    color: #fff;
}

.step.active {
  color: #007bff;
}


.step.completed {
  color: #007bff;
}