*{
    margin: 0;
    padding: 0;
    box-sizing:border-box;
}
.enquiry-form h1{
    text-align: center;
}
.enquiry-form{
    width: 60%;
    margin: auto;

}
.box{
    width: 100%;
    margin: auto;

}
.center-content {
    display: flex;
    justify-content: center;
    align-items: center;
}
.center-content .btn:hover{
  background-color: rgb(117,30,30);
}

@media screen and (max-width:768px) {
    .enquiry-form h1{
        text-align: center;
        font-size: 5vw;
    }
    .enquiry-form{
        width: 100%;
        margin: auto;
    
    }
    input[type="text"]::placeholder {
        font-size: 12px; 
      }
      input[type="number"]::placeholder {
        font-size: 12px; 
      }
      input[type="email"]::placeholder {
        font-size: 12px; 
      }
      input[type="date"]::placeholder {
        font-size: 12px; 
      }
      textarea::placeholder {
        font-size: 12px; 
      }
      select option {
        font-size: 12px;
      }

      .center-content .btn{
        font-size: 12px;
      }
      .form-check-label{
        font-size: 12px;
      }
    
}