.form-step {
    display: none;
  }
  
  .form-step.active {
    display: block;
  }
  #job-form{
    max-width: 100%;
    width: fit-content;
    overflow: hidden;
    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;
    background: gold;
    color: #000;
    border: none;
    font-size: large;
    padding: 5px 10px;
    border-radius: 15px;
    font-family: 'Passion One';
  }

  input{
    max-width: 100%;;
    background: #000;
    color: white;
    padding: 5px 10px;
    border: 2px solid white;
    border-radius: 10px;
  }
  input::placeholder{
    color: #fff;
  }
  p{
    margin-bottom: 0px!important;
  }
  textarea{
    background: #000;
    color: white;
    padding: 5px 10px;
    border: 2px solid white;
    border-radius: 10px;
  }
  textarea::placeholder{
    color: #fff;
  }

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