.step-container {
  position: relative;
  text-align: center;
  transform: translateY(-43%);
}

.step-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid #dee2e6;
  line-height: 30px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  cursor: pointer;
}

.step-circle.completed{
  background-color: green;
  color: #fff;
}

.step-line {
  position: absolute;
  top: 16px;
  left: 50px;
  width: calc(100% - 100px);
  height: 2px;
  background-color: #007bff;
  z-index: -1;
}

#multi-step-form {
  overflow-x: hidden;
}

.form-container {
  border: 2px solid #ced4da;
  padding: 20px;
  border-radius: 10px;
  position: relative;
}

.form-name {
  position: absolute;
  top: -20px;
  left: 20px;
  background-color: #fff;
  padding: 0 5px;
  font-size: 25px;
  color: #666;
}

.span-star {
  color: #ff0000;
  display: inline;
  font-size: 15px;
  font-weight: 600;
}
.form-select {
  border: 1px solid #bdc7d0;
  padding: 10px 10px;
}