

body { 
background: linear-gradient(to right top,rgba(55, 45, 44, 0.81),rgba(37, 89, 89, 0.55),rgba(211, 218, 223, 0.98)) !important;

}

.business-form {
     display: flex;
    justify-content: center;  
    align-items: center;      
    height: 14vh;           
    font-size: 24px;
    padding-bottom:24px;
    
   
    }
 .step-text {
 padding-right: 14px;
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 19px;
  padding-bottom: 3px;
  color: #13423bfa;
  }


         select, textarea {
      border: 1px solid #ccc;
      border-radius: 4px;
      width: 100%;
      padding: 10px;
      background-color: #ffffff;
      font-size: 15px;
      padding-left: 14px;
   
    }
    textarea {
      resize: vertical;
      
    }

    textarea:focus,
    select:focus {
    background-color: #ffffff;
    border-color: #15887c;
  
    outline: none;
    }

/* Pagination nav */
.step-pagination {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 16px;
}

.step-pagination label {
  background: #2b8be6;
  color: #fff;
  padding: 8px 28px;
  border-radius: 6px;
  cursor: pointer;

  border: none;
  transition: background 0.2s;
  box-shadow: 0 2px 6px rgba(43, 139, 230, 0.08);
  font-size: 15px;
}

.step-pagination label:hover {
  background: #1369c3;
}

.step-pagination .back {
  background: #dde2e6;
  color: #2b8be6;
}

.step-pagination .back:hover {
  background: #b3c0cc;
  color: #1369c3;
}
.back {
    margin-right: auto;
}

#step3:checked ~ .steps .step3 .submit-btn {
  display: block;
}

/* Responsive */
@media (max-width: 600px) {
  .multi-step-form {
    padding: 16px;
    max-width: 98vw;
  }
  .step-pagination label {
    padding: 8px 16px;
    font-size: 14px;
  }
}
/* Assume step1 Next label has id="next1" */
  /* Pagination next button disables if any input in step is invalid */
 .step1:has(input:invalid) .step-pagination label[for="step2"] {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}
  .step2:has(input:invalid) .step-pagination label[for="step3"] {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}




    /* Hide native radio buttons */
.step-radio {
  display: none;
}

/* Form container */
.multi-step-form {
  max-width: 500px;
  margin: 40px auto;
  padding: 32px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  border: 2px solid #092833a1
}

/* Hide all steps by default */
.step-content {
  display: none;
  animation: fadeIn 0.5s;
}

/* Show step 1 if #step1 is checked */
#step1:checked ~ .steps .step1,
#step2:checked ~ .steps .step2,
#step3:checked ~ .steps .step3 {
  display: block;
}

/* Simple animation */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Step navigation styling    */
.step-nav {
  display: flex;
  justify-content: space-between;
  margin-bottom: 45px;
  pointer-events: none;
}



.step-nav label {
  background: #e3e6ea;
  color: #7bb3e8;;
  padding: 10px 15px;
  border-radius: 50px;
  cursor: default;
  font-weight: bold;
  transition: background 0.2s;
}
.step-nav label:hover {
  background: #dbeafd;
}

/* Highlight active step */
#step1:checked ~ .step-nav label[for="step1"],
#step2:checked ~ .step-nav label[for="step2"],
#step3:checked ~ .step-nav label[for="step3"] {
  background: #2b8be6;
  color: #fff;
}

/* Hide submit until last step */
#step3:checked ~ .steps .step3 .submit-btn {
  display: block;
}
.submit-btn {
  display: none;
 

    background: linear-gradient(90deg, #2b8be6 0%, #6bb3f9 100%);
  color: #fff;
  border: none;
  padding: 12px 0;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
  margin-top: 10px;
  font-weight: bold;
}



 .checker {
 margin-right: 2px;
  width: 23px;
  height: 16px;
  cursor: pointer;
  
}

.step-content.step3 label {
 display: flex;
  margin-bottom: 3px;
  gap: 4px;
  
}
 .checker label{
font-size: 6px;
 }

.vendor-policy-label {
  color: #3f3f3f;               
  font-size: 14px;          

}