{font-family: Arial, Helvetica, sans-serif;}
* {box-sizing: border-box;}

/* Button used to open the contact form - fixed at the bottom of the page */
.open-button {
  background-color: #9c064c;
  color: white;
  font-size: 16px;
  padding: 8px 5px;
  border: none;
  cursor: pointer;
  opacity: 1;
  position: fixed;
  bottom: 18px;
  left: 20px;
  width: 240px;
  border-radius: 12px;
  z-index: 5;	
}

/* The popup form - hidden by default */
.form-popup {
 display: none;
  position: fixed;
  bottom: 0;
  left: 15px;
  border: 2px solid #035E66;
  z-index: 9;
}

/* Add styles to the form container */
.form-container {
  max-width: 400px;
  padding: 10px;
  background-color: white;
}

/* Full-width input fields */
.form-container input[type=text], .form-container input[type=password] {
  width: 100%;
  background-color: #F5F5F2;
  color: #686565;
  padding: 10px 20px;
  margin: 3px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* When the inputs get focus, do something */
.form-container input[type=text]:focus,.form-container input[type=password]:focus {
  background-color: #ddd;
  border: 1px solid #06918d;
}
/* Set a style for the submit/login button */
.form-container .btn {
  background-color: #06918d;
  color: white;
  padding: 5px 10px;
  border: none;
  cursor: pointer;
  width: 50%;
  margin:5px;
  opacity: 0.8;
}

/* Add a red background color to the cancel button */
.form-container .cancel {
  background-color: #B22222;
}

/* Add some hover effects to buttons */
.form-container .btn:hover, .open-button:hover {
  opacity: 1;
}