
/* Button used to open the contact form - fixed at the bottom of the page */
.open-button {
  border: none;
  cursor: pointer;
  position: relative;
}

/* The popup form - hidden by default */
.form-popup {
  display: none;
  position: fixed;
  min-width: 300px;
  max-height: 90%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 3px solid #f1f1f1;
  padding: 10px;
  background-color: white;
  z-index: 99;
}

/* ***************** CSS CAMPOS ***************** */

/* Full-width input fields */
.form-group input, .form-group textarea, .form-group select {
  width: 90%;
  padding: 15px;
  margin: 5px 0px 22px 0px;
  border: none;
  background: #f1f1f1;
}

/* When the inputs get focus, do something */
.form-container input:focus, .form-container textarea:focus, .form-container select:focus {
  background-color: #ddd;
  outline: none;
}

/* ***************** CSS CAMPOS ***************** */



/* Set a style for the submit/login button */
.form-container .btn {
  background-color: #4CAF50;
  color: white;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  width: 100%;
  margin-bottom:10px;
  opacity: 0.8;
}

/* Add a red background color to the cancel button */
.form-container .cancel {
  background-color: red;
}

/* Add some hover effects to buttons */
.form-container .btn:hover, .open-button:hover {
  opacity: 1;
}

/* EDICAO DE CAMPOS */

.contact-info{
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
