


/*---------------------------------email form-------------------------------------*/

/* Style the form element with a border around it */
form {
  margin: 0 20px 0;
}

/* Style the input elements  */
input[type=text]{
  width: 100%;
  padding: 12px;
  margin: 0px;
  border: 1px solid #ccc;
  display: inline-block;
  box-sizing: border-box;
}


/* Style the submit button */
input[type=submit] {
  width: 100%;
  background-color: #3BC32C;
  color: white;
  border: none;
  padding: 12px;
  margin: 1px;
  display: inline-block;
  box-sizing: border-box;
  
}

input[type=submit]:hover {
  opacity: 0.9;
}



