/* Button used to open the contact form - fixed at the right bottom of the page */
.open-button {
  background-color: #005077;
  color: white;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  opacity: 0.8;
  position: fixed;
  bottom: 23px;
  right: 32px;
  width: 250px;
}

/* The popup form - initially hidden */
.form-popup {
  display: none;
  position: fixed;
  top: 20%;
  right: 15px; /* Aligns form to the right side */
  border: 3px solid #f1f1f1;
  z-index: 9;
  background-color: white;
  width: 300px; /* Width of the form */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
}

/* Add styles to the form container */
.form-container-popup {
  max-width: 100%;
  padding: 10px;
}

/* Full-width input fields */
.form-container-popup input[type="text"],
.form-container-popup input[type="email"],
.form-container-popup input[type="tel"],
.form-container-popup textarea {
  width: 100%;
  padding: 10px;
  margin: 5px 0 8px 0;
  border: none;
  background: #f1f1f1;
  border-radius: 4px;
  font-size:12px !important;
}

/* When the inputs get focus, do something */
.form-container-popup input[type="text"]:focus,
.form-container-popup input[type="email"]:focus,
.form-container-popup input[type="tel"]:focus,
.form-container-popup textarea:focus {
  background-color: #ddd;
  outline: none;
}

/* Set a style for the submit/login button */
.form-container-popup .btn {
  background-color: #04aa6d;
  color: white;
  padding: 10px 15px;
  border: none;
  cursor: pointer;
  width: 100%;
  margin-bottom: 10px;
  opacity: 0.8;
  border-radius: 4px;
}

/* Add a red background color to the cancel button */
.form-container-popup .cancel {
  background-color: red;
}

/* Add some hover effects to buttons */
.form-container-popup .btn:hover,
.open-button:hover {
  opacity: 1;
}
