@charset "utf-8";



#contact {
  background: #F9F9F9;
  padding: 25px;
  margin: 50px auto;
  max-width: 600px; /* Set a maximum width for the form */
}

#contact h3,
#contact h4 {
  text-align: center;
}

#contact fieldset {
  border: none;
  margin: 0;
  padding: 0;
}

#contact input,
#contact textarea,
#contact button {
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 15px;
}

#contact input,
#contact textarea {
  border: 1px solid #CCC;
  background: #FFF;
  padding: 10px;
}

#contact textarea {
  min-height: 100px;
  height: 100px;
  resize: vertical;
  overflow: auto;
}

#contact button {
  cursor: pointer;
  border: none;
  background: #65CCEF;
  color: #FFF;
  display: block;
  margin: 0 auto;
  width: 160px; /* Allow the button to take its natural width must the be set to auto*/
  padding: 10px 40px; /* Adjust padding as needed */
  font-size: 15px;
  border-radius: 20px;
}

#contact button:hover {
  background: #09C;
}

#contact button:active {
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}



#contact input:focus,
#contact textarea:focus {
  outline: 0;
  border: 1px solid #999;
}

#message {
    resize: vertical;
    overflow: auto;
  }
	
