.progress-container {
  position: relative;
  margin: 30px 0;
}
.progress-bar {
  height: 2px;
  background-color: #dee2e6;
  position: relative;
  margin: 0 auto;
}
.progress-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: -14px;
}
.step {
  text-align: center;
  position: relative;
  width: 33.33%;
}
.step-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid #dee2e6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.step.active .step-icon {
  background-color: #000;
  border-color: #000;
  color: white;
}
.step-label {
  font-size: 14px;
  margin-top: 8px;
  color: #6c757d;
}
.step.active .step-label {
  color: #000;
  font-weight: 500;
}
.form-container {
  background-color: #fff;
  border-radius: 5px;
  padding: 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
.step-card {
  max-width: 1250px;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}
.step-1-form {
  .form-label {
    font-weight: 500;
  }
  .required:after {
    content: " *";
    color: #dc3545;
  }
  .btn-save {
    background-color: #8b909b;
    border: none;
    padding: 8px 20px;
  }
  .phone-input {
    display: flex;
  }
  .phone-input .country-code {
    width: 80px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .phone-input .phone-number {
    flex: 1;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  a {
    color: black;
  }

  .icon {
    font-size: 1.2rem;
  }

  .form-label {
    color: #374151;
    font-size: 14px;
    font-weight: 400;
  }

  .btn {
    display: flex;
    align-items: start;
  }
}

.step-2-form {
  .otp-input {
    width: 45px;
    height: 50px;
    text-align: center;
    font-size: 1.25rem;
  }

  .otp-input-group {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
  }

  .resend-link {
    font-size: 0.9rem;
    margin-top: 10px;
  }

  .resend-link a {
    text-decoration: none;
    font-weight: 500;
  }

  @media (max-width: 576px) {
    .otp-input {
      width: 34px;
      height: 40px;
      font-size: 1rem;
    }
  }
}

.step-3-form {
  .form-label {
    color: #374151;
  }

  .upload-box {
    border: 2px dashed #dee2e6;
    padding: 25px;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 25px;
    font-size: 0.95rem;
    cursor: pointer;
  }

  .form-check-label {
    font-size: 0.9rem;
  }

  .btn-green {
    background-color: #00b96b;
    color: #fff;
  }

  .btn-green:hover {
    background-color: #01975b;
  }
}
