.label-row{
    margin-top: 25px;
}

#rental-area-form{
    margin-top: -40px;
    height:740px;
    width: 100%;
    position: relative;
    background-color:linear-gradient(to 	right,#1B5E20 0%,#388E3C 50%, #1B5E20 100%);
}

#rental-area-form form{
    margin-top: 40px;
}

#rental-area-form img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgba(110, 110, 110, 0.4);
}

#bookingform2{
    background-color: white;
    position: absolute;
    width: 60%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    padding: 10px;
    z-index: 2;
}

#bookingform2 select,#bookingform2 input[type=text],#bookingform2 input[type=date] {
    border-radius: 0;
    height: 3.5rem;
    background-color: #F3F6F9;
    border-color: #F3F6F9;
    color: #3F4254;
    outline: none;
    box-shadow: none;
    border: none;
    width: -webkit-fill-available;
}

#bookingform2 input[type=checkbox]{
  appearance: none;
  float: right;
  width: 2rem;
  height: 2rem;
  outline: none;
  border-radius: 0;
  border: #388E3C 2px solid;
  cursor: pointer;
  transition: all 0.5s;
}

#bookingform2 input[type=checkbox]:checked{
    background-image: url("/icons/check.svg");
    background-color: #388E3C;
  }

  .submit-button{
    background-color: #3F4254;
    color: white;
    height: 3.5rem;
    width: 100%;
    margin-bottom: 10px;
  }

  .submit-button:hover{
    background-color: #388E3C;

  }


@media only screen and (max-width:1200px) {

  #btn-check-ap{
    display: none;
  }
  }

  @media only screen and (max-width:991px) {
    #bookingform2{
        width: 70%;
        height: auto;
    }
    #bookingform2 select,#bookingform2 input[type=text],#bookingform2 input[type=date] {
        margin-bottom: 15px;
    }
  }
  
  
  @media only screen and (max-width:768px) {
    #bookingform2{
        width: 85%;
        height: auto;
  }

  .submit-button{
    margin-top: 15px;
    }
  }
  
  @media only screen and (max-width:500px) {
    #bookingform2{
        width: 95%;
        height: auto;
  }
  }