#contactContainer {
  float: left;
  border-bottom: 1px solid #D9D9D9;
  margin-bottom: 20px;
}
.contact-form {
  padding: 20px;
  margin: 20px;
}
.contact-form h2 {
  text-align: center;
  font-size: 24px;
  color: #FFF;
  background-color: #e1e1e1;
  margin-bottom: 20px;
  text-transform: uppercase;
  padding: 10px;
}
.contact-form label {
  display: block;
  margin-bottom: 5px;
  color: #999;
}
.contact-form input, .contact-form textarea {
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  background-color: #f1f1f1;
}
.contact-form input[type="text"], .contact-form input[type="email"], .contact-form input[type="tel"], .contact-form input[type="date"], .contact-form input[type="time"] {
  width: 100%;
}
.contact-form textarea {
  width: 100% !important;
  min-height: 200px;
}
.contact-form input[type="submit"] {
  /* 
  background-color: rgba(255, 190, 152, 0.6) !important;
  text-shadow: 2px 2px 0px rgba(255, 190, 152, 1); 
  */
  background-color: rgba(255, 190, 152, 1) !important;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  color: #fff;
  border: none;
  padding: 15px;
  cursor: pointer;
  transition: background-color 0.3s;
  float: right;
  clear: both;
  width: 200px;
  position: relative;
}
.contact-form input[type="submit"]:hover {
  background-color: rgba(255, 190, 152, 0.6) !important;
}
.spinner-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 2;
  text-align: center;
  padding-top: 20%;
  color: #333;
  font-size: 1.2em;
}
.spinner {
  display: inline-block;
  border: 8px solid #f3f3f3;
  border-radius: 50%;
  border-top: 8px solid #FFBE98;
  width: 60px;
  height: 60px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.message-container {
  margin-top: 20px;
  padding: 20px;
  background-color: #FFBE98;
  color: #fff;
  border-radius: 8px;
  text-align: center;
  z-index: 3;
}
.inputs-container {
  float: left !important;
  width: 350px !important
}
.image-container {
  float: left !important;
  clear: right !important;
  margin: -85px 0 0 50px !important;
}
.textarea-container {
  float: left !important;
  clear: both !important;
  width: 858px !important;
  margin: -100px 0 0 0;
}

.error-message {
  color: red;
  font-size: 0.8em;
  display: block;
}