
.contact-container {
  width: 100%;
  //margin: 2em auto;
  overflow: hidden;
  background: white;
  border-radius: 5px;
}

.message, .contact, .name, .cap-area, .contact-footer, .contact-header, textarea {
  display: block;
  padding: 0;
  margin: 0;
  border: 0;
  clear: both;
  overflow: hidden;
}

.contact-header, .contact-footer {
  height: 75px;
  background: rgba(0, 0, 0, 0.01);
  line-height: 75px;
  padding-left: 20px;
  border-radius: 5px 5px 0 0;
}
.contact-header h1, .contact-footer h1 {
  font-size: 1.2em;
  text-transform: uppercase;
  color: rgba(51, 51, 51, 0.4);
}

.first, .last {
  float: left;
  width: 50%;
  margin: 0;
  padding: 0 0 0 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  height: 50px;
}

.last {
  width: 50%;
  border-left: 0;
}

.subject, .email, textarea {
  height: 50px;
  width: 100%;
  line-height: 50px;
  padding: 0 0 0 20px;
  border-top: 0;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

#captcha {
	float: left;
	width: 75%;
	margin: 0;
	padding: 0 0 0 20px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	height: 50px;
}
#cap_img {
	float: left;
	width: 25%;
	height: 50px;
}


textarea {
  height: 200px;
}

.contact-footer {
  height: 49px;
  //border-top: 1px dashed rgba(0, 0, 0, 0.3);
  border-radius: 0 0 5px 5px;
  padding-left: 0;
  padding-right: 0px;
}
.contact-footer input {
  height: 40px;
  width: 100%;
  background: #e74c3c;
  //border-radius: 5px;
  border: 0;
  margin: 7px 0;
  color: white;
  float: right;
  padding: 0 20px 0 20px;
  font-weight: 700;
  font-size: 17px;
  border-bottom: 3px solid #c0392b;
  transition: all linear .2s;
}
.contact-footer input:hover {
  background: #c0392b;
}
.contact-footer input:focus {
  outline: none;
}

.first:focus, .last:focus, .email:focus, .subject:focus, textarea:focus, #captcha:focus, textarea:focus {
  outline: none;
  background: rgba(52, 152, 219, 0.1);
  color: rgba(51, 51, 51, 0.7);
}

.error{
	border: 1px solid red;
}
.cap_status{
	width: 350px;
	padding: 10px;
	font: 14px arial;
	color: #fff;
	background-color: #10853f;
	display: none;
}
.cap_status_error{
	background-color: #bd0808;                
}