#bussineFormBox{
 position:absolute;
 left:0%;
 top:60px;
 z-index:3;
 width:100%;
 height:calc(100% - 90px);
 display:none;
 justify-content:center;
 align-items:center;
 background-color:white;
 padding:0px;
 margin:0px;
 box-sizing:border-box;
}
/* GENERAL FORM STYLE */
    #business-form {
      width: 310px;
      max-width:360px;
      height:420px;
      background: #f7f7f7;
      padding: 3px;
      border-radius: 10px;
      border: 1px solid #ccc;
      display: flex;
      flex-direction: row wrap;
      justify-content:center;
      align-items:center;
      gap: 20px;
      box-sizing:border-box;
    }

    label {
      width:98%;
      font-weight: 600;
      margin-top: 10px;
    }

    input, select {
      width: 100%;
      padding: 8px;
      border-radius: 6px;
      border: 1px solid #bbb;
      box-sizing:border-box;
    }

    button {
      padding: 10px;
      border-radius: 6px;
      background: #007bff;
      color: #fff;
      border: none;
      cursor: pointer;
      width: 100%;
      margin-top: 15px;
    }

    button:hover {
      background: #0056b3;
    }

    .prev-btn {
      background: #666;
    }

    .prev-btn:hover {
      background: #444;
    }

    /* PAGINATION */
    .form-step {
      display: none;
      flex-direction: column;
    }

    .form-step.active {
      display: flex;
    }

@media screen and (max-width:767px){
 #bussiness-form{
  width:100%;
 }
}
