.form-steps {
  max-width: 600px;
  margin: auto;
  font-family: "Outfit", Sans-serif;
}

.step-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 2px solid #ddd;
  padding-bottom: 10px;
}
.buttons, .frmrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap:15px;
}
.step-icon {
  width: 30px;
  height: 30px;
  background-color: #ccc;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  font-weight: bold;
}

.step-icon.active {
  background-color: #007a5c;
}

.step-nav span {
  margin-left: 8px;
  font-weight: bold;
  color: #333;
}

.step {
  display: none;
}

.step.active {
  display: block;
}

input, select {
  display: block;
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}

button {
  padding: 10px 20px;
  border: none;
  background-color: #007a5c;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  margin-right: 10px;
}

button:hover {
  background-color: #005f47;
}

#otpStatus {
  margin-top: 10px;
  font-weight: bold;
}

button[disabled] {
  background-color: #ccc;
  cursor: not-allowed;
}
form *{
      font-family: "Outfit", Sans-serif;
}
.form-group{
  margin-bottom: 18px;
}
label{padding-bottom:8px;}
.required{
  color:red;
}
button#prevBtn, button#nextBtn,#verifyOtp,#sendOtp,button#submitBtn{
      background-color: #0f8568;
      color:#fff;   
      border: 1px solid #0f8568;
      width:100%;
}
button#prevBtn:hover, button#nextBtn:hover,#verifyOtp:hover,#sendOtp:hover,button#submitBtn:hover{
      background-color: #0f8568;
      color:#fff;   
      border: 1px solid #0f8568;
}
input[type=date], input[type=email], input[type=number], input[type=password], input[type=search], input[type=tel], input[type=text], input[type=url], select, textarea {
    border: 1px solid #C5C5C5 !important;
}
.pac-target-input.error{
  border: 2px solid red !important;
}
