/* MAIN CONTAINER – layout setup */
.multi-step-wrapper {
  font-family: 'Inter', sans-serif;
  color: white;
  background-color: transparent;
}

/* PROGRESS BAR */
.progress-bar {
  background: #E4E4E4;
  height: 10px;
  max-width: 800px;
  margin: auto;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 30px;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, #A855F7, #3B82F6);
  transition: width 0.3s ease;
  border-radius: 10px;
}

/* FLEX LAYOUT */
.multi-step-container {
  display: flex;
  gap: 40px;
  justify-content: space-between;
}

/* SIDEBAR */
.sidebar-steps {
  list-style: none;
  padding: 0;
  width: 40%;
}

.step-label {
  padding: 14px 0;
  margin-bottom: 10px;
  background: transparent;
  border-left: 4px solid transparent;
  color: #7E7E7E;
  font-size: 20px;
  transition: 0.3s;
  border-radius: 10px;
}

.step-label.active {
  background: linear-gradient(45deg, #7E4AF7, #7E4AF700);
  border-left: 0;
  color: white;
  font-weight: 600;
  padding: 14px 20px;
}

/* FORM AREA */
.form-area {
  width: 40%;
  padding: 20px 30px;
  border-radius: 12px;
  background: #FFFFFF1A;
  background-clip: padding-box;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.form-area::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 1px;
  background: linear-gradient(45deg, #7E4AF7, #FF6CC433);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.form-area input[type="checkbox"] {
  transform: scale(1.5);
  margin-right: 4px;
}

.form-area h3 {
  color: #fff !important;
  margin: 0;
  margin-bottom: 10px;
}

/* FORM STEP CONTROLS */
.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.form-area .form-step p {
  font-size: 14px;
  color: #CCCCCC;
  margin-bottom: 15px;
}

.form-area input[type="text"], input[type="email"], select {
  display: block;
  width: 100%;
  margin: 12px 0;
  padding: 12px 18px;
  border-radius: 6px;
  border: 0;
  background: #F3F3F31A !important;
  color: #B0B0B0;
  border-radius: 10px;
  outline: 0;
}

/* INPUTS */
.form-area input[type="text"],
input[type="email"],
select {
  display: block;
  width: 100%;
  margin: 12px 0;
  padding: 12px;
  border-radius: 6px;
  border: none;
  background: #1e1e1e;
  color: white;
}

.form-step option {
    color: #000 !important;
    font-size: 14px;
}

.form-area input#userPhone {
    padding: 12px;
    border-radius: 6px;
    background: #F3F3F31A !important;
    outline: none !important;
}

/* BUTTONS */
.multi-step-wrapper button {
  padding: 12px 20px;
  margin-top: 22px;
  background: linear-gradient(to right, #7E4AF7, #BCA2F8);
  border: none;
  border-radius: 12px;
  color: white;
  cursor: pointer;
  display: block;
  width: 100%;
}

.btn-group {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

/* SUCCESS MESSAGE */
.success-message {
  text-align: center;
  padding: 0;
  background: none;
  border-radius: 0px;
  border: 0;
}

/* CHECKMARK */
.checkmark {
  font-size: 50px;
  color: black;
  margin-bottom: 10px;
  background: linear-gradient(45deg, #7E4AF7, #FF6CC4);
  border-radius: 50%;
  width: 100%;
  max-width: 70px;
  margin: 0 auto;
}

/* THIRD STEP FORM */
.third-step-form input[type="text"] {
    width: 120px !important;
    margin: 0 !important;
    padding: 10px 20px !important;
}

.third-step-form label:nth-child(5) {
  display: flex;
  width: 15%;
  align-items: center;
  gap: 10px;
}

.third-step-form {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 13px;
  align-items: center;
}

.form-step h5 {
  margin: 0 !important;
  font-size: 16px;
  margin-bottom: 20px !important;
  line-height: 22px;
}

/* ============================= */
/*        RESPONSIVE STYLES      */
/* ============================= */

/* Tablets */
@media (max-width: 992px) {
  .multi-step-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .sidebar-steps,
  .form-area {
    width: 100%;
    max-width: 600px;
  }

  .step-label {
    font-size: 18px;
  }

  .form-area {
    padding: 20px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .multi-step-container {
    flex-direction: column;
    gap: 25px;
  }

  .sidebar-steps,
  .form-area {
    width: 100%;
  }

  .step-label {
    font-size: 16px;
    padding: 10px 0;
  }

  .form-area {
    padding: 15px 20px;
  }

  .btn-group {
    flex-direction: column;
  }

  .multi-step-wrapper button {
    width: 100%;
  }

  .third-step-form {
    flex-direction: column;
    align-items: flex-start;
  }

  .third-step-form input[type="text"] {
    width: 100% !important;
  }
	.my-check-img {
    width: auto;
    height: 60px !important;
}
	
}



.my-check-img{
	width: auto;
	height: 150px;
}
