@charset "utf-8";

#contact-form {}
#contact-form input[type="text"],
#contact-form textarea {
	width: 100%;
	padding: 10px;
    font-size: 12px;
    height: auto;
    resize: none;
    border: 0;
    -webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;	
	background: #eee;
    color: #999;
}

#contact-form input[type="text"]:focus,
#contact-form textarea:focus {
	background: #ccc;
	color: #555;
}
#contact-form a {
	color: #555;
}
#contact-form .reset,
#contact-form .submit {    
	width: 40%;
    cursor: pointer;
    display: inline-block;
    padding: 10px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    vertical-align: middle;
    border: 0;
	box-shadow: 0px 2px 0px 0px rgba(0,0,0,.2);
	transition:all 0.3s ease-in-out;
	-moz-transition:all 0.3s ease-in-out;
	-webkit-transition:all 0.3s ease-in-out;
}
#contact-form i {
	vertical-align: middle;
} 
#contact-form .reset {
	margin-right: 10px;
	background: #1b1b1b;
	color: #fff;
}
#contact-form .submit {
	background: #63C6AE;
	color: #fff;
}
#contact-form .reset:hover  {
    background: #63C6AE;
}
#contact-form .submit:hover {
    background: #1b1b1b;
}



@media (max-width: 767px) {
  	
	#contact-form .submit {    
		width: 100%;
		font-size: 12px;
	}
}
