
.contact_container {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

#contact input[type="text"],
#contact input[type="email"],
#contact input[type="tel"],
#contact input[type="url"],
#contact textarea,
#contact button[type="submit"] {
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  font-family: Jost, sans-serif;
  border: 1px solid #bcb;
  border-radius: 5px;
}

#contact {
  background: #F9F9F9;
  padding: 25px;
  margin: 25px 0;
  border: 1px solid #aaa;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}

fieldset {
  border: medium none !important;
  margin: 0 0 10px;
  min-width: 100%;
  padding: 0;
  width: 100%;
}

#contact input[type="text"],
#contact input[type="email"],
#contact input[type="tel"],
#contact input[type="url"],
#contact textarea {
  width: 100%;
  border: 1px solid #ccc;
  background: #fff;
  margin: 0 0 5px;
  padding: 10px;
}

#contact input[type="text"]:hover,
#contact input[type="email"]:hover,
#contact input[type="tel"]:hover,
#contact input[type="url"]:hover,
#contact textarea:hover {
  -webkit-transition: border-color 0.3s ease-in-out;
  -moz-transition: border-color 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out;
  border: 1px solid rgb(68, 116, 138);
}

#contact input[type="text"]:active,
#contact input[type="email"]:active,
#contact input[type="tel"]:active,
#contact input[type="url"]:active,
#contact textarea:active {
  -webkit-transition: border-color 0.3s ease-in-out;
  -moz-transition: border-color 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out;
  border: 1px solid rgb(68, 116, 138);
}


#contact textarea {
  height: 175px;
  max-width: 100%;
  resize: vertical;
}

#contact button[type="submit-OLD"] {
  cursor: pointer;
  margin: 0 0 5px;
  width: 100%;
  border: none;
  background: #4CAF50;
  color: #FFF;
  padding: 10px;
  font-size: 18px;
}

#contact button[type="submit"] {
  cursor: pointer;
  display: block;
  margin: 0 0 5px;
  width: 100%;
  border-bottom: 3px solid #333;
  border-radius: 15px;
  overflow: hidden;
  padding: 15px;
  background-image: linear-gradient(rgb(101, 152, 175), rgb(60, 104, 124));
  text-align: center;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  color: white;
}

#contact button[type="submit"]:hover {
  background-image: linear-gradient(rgb(60, 104, 124), rgb(101, 152, 175));
  border-bottom: 1px solid #333;
  padding-top: 17px;
  transition: background-image 0.3s ease-in-out;
}






#contact button[type="submit-OLD"]:hover {
  background: #43A047;
  -webkit-transition: background 0.3s ease-in-out;
  -moz-transition: background 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}

#contact button[type="submit"]:active {
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}

.copyright {
  text-align: center;
}

#contact input:focus,
#contact textarea:focus {
  outline: 0;
  border: 1px solid #9a9;
}

::-webkit-input-placeholder {
  color: #888;
}

:-moz-placeholder {
  color: #888;
}

::-moz-placeholder {
  color: #888;
}

:-ms-input-placeholder {
  color: #888;
}