body {
  width: 100%;
  height: 100vh;
  /* background-image: url('../../assets/images/enquiry/enquiry.webp'); */
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}

.enquiry-section {
  position: relative;
  top: 100px;
  margin: 0 auto;
  width: 80%;
  height: 80vh;
  color: white;
  text-align: center;
}

.enquiry-section h1 {
  /* font-family: 'Kalam', cursive; */
  font-size: 36px;
}

.enquiry-section h2 {
  /* font-family: 'Kalam', cursive; */
  font-size: 30px;
}

.form-container {
  width: 70%;
  height: 60vh;
  padding: 10px;
  margin: auto;
}

.form-container input,
.form-container button {
  width: 95%;
  height: 7vh;
  margin: 10px auto;
  padding: 5px;
  font-size: 16px;
  border: none;
  border-radius: 10px;
}

.form-container textarea {
  width: 97%;
  margin: 10px auto;
  padding: 10px;
  font-size: 16px;
  border: none;
  border-radius: 10px;
}
.form-container div{
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.form-container div div{
  display: flex;
  flex-direction: column;
}
.form-container span{
  display: inline;
}

.form-container button {
  background-color: rgb(118, 117, 117);
  font-weight: bold;
  cursor: pointer;
}

.form-container-btn{
  display: flex;
  gap: 20px;
  margin: auto;
  width: 97% !important; 
}

.error-message {
  color: red;
  font-size: 12px; 
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  display: block; 
  margin: 0 25px;
  text-align: justify; 
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  overflow: auto; 
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4); 
}


.modal-content {
  color: black;
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%; 
  max-width: 400px; 
  text-align: center;
}


.close-button {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close-button:hover,
.close-button:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

@media (max-width: 767px) {
  .enquiry-section {
    top: 70px;
    width: 90%;
  }
  .form-container {
    padding: 0;
  }
  .form-container div {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
  }

  .form-container input,
  .form-container button,
  .form-container textarea {
    width: 95%;
    height: 6vh;
    margin: 5px;
    padding: 5px;
    font-size: 16px;
    border: none;
    border-radius: 10px;
  }
  .form-container textarea {
    height: 10vh;
  }
}
