@charset "utf-8";
input[type="text"], input[type="tel"], input[type="email"], textarea {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width:98%;
}


#content {
	padding:0 25px;	
}

#contact form p {
	text-align:center;
	margin-bottom:30px;
	line-height:2.0rem;
}
#contact input, #contact textarea {
	background-color:#000;
	border:2px solid #ccc;
	border-radius:5px;
	caret-color:#fff;
	color:#fff;
}
#contact #comment {
	max-width:600px;
	margin: 0 auto;	
	
}
#contact textarea {
	height:300px;
}
input[type="text"], input[type="tel"], input[type="email"] {
	max-width:400px;
	height:35px;
}
input[type="submit"] {
	padding:5px 15px;
	margin-top:30px;	
}
#contact input:hover, #contact textarea:hover {
	box-shadow:0px 0px 10px #fff;	
}
#contact input[type="text"]:focus, #contact input[type="tel"]:focus, #contact input[type="email"]:focus, #contact textarea:focus {
	outline:3px solid #fff;
}



@media screen and (max-width:720px) {
	#contact textarea {
		height:250px;
	}
	input[type="text"], input[type="tel"], input[type="email"] {
		height:25px;
	}
}