.form-step {
    display: none;
  }
  
  .form-step.active {
    display: block;
  }
  #franchise-form{
    width: fit-content;
    color: #fff;
    background: url(../images/55.jpg);
    background-size: cover;
    padding: 10px 20px;
    background-position: center center;
    border-radius: 15px;
    border: 2px solid white;
  }
  .nxtBTN{
    position: relative;
    top: 0px;
    float: right;
    right: 0;
    background: gold;
    color: #000;
    border: none;
    font-size: large;
    padding: 5px 10px;
    border-radius: 15px;
    font-family: 'Passion One';
  }
  .prcBTN{
    position: relative;
    top: 0px;
    float: left;
    right: 0;
    background: #000 ;
    color: #fff;
    border: none;
    font-size: large;
    padding: 5px 10px;
    border-radius: 15px;
    font-family: 'Passion One';
  }
  input{
    background: #000;
    color: white;
    padding: 5px 10px;
    border: 2px solid white;
    border-radius: 10px;
  }
  input::placeholder{
    color: #fff;
  }
  textarea{
    background: #000;
    color: white;
    padding: 5px 10px;
    border: 2px solid white;
    border-radius: 10px;
  }
  textarea::placeholder{
    color: #fff;
  }

  @media (max-width: 768px) {
    #franchise-form{
      padding: 10px 10px;
    }
  }