[codesyntax lang=”css”]

@import  "http://fonts.googleapis.com/css?family=PT+Sans";

/*************************************************
 * CONTACT FORM CSS
/************************************************/
.wpcf7 {
	color: #555;
	font-weight: bold;
	font-family: 'PT Sans', 'sans-serif';
}

/*Input Fields*/
.wpcf7 input[type="password"], .wpcf7 input[type="text"], .wpcf7 input[type="email"] {
	width: 60%;
	border: 2px solid #F6972B;
	font-family: 'PT Sans', 'sans-serif';
}

/*Message Area*/
.wpcf7 textarea {
	width: 60%;
	border: 2px solid #F6972B;
	font-family: 'PT Sans', 'sans-serif';
	padding: 6px;
}

.wpcf7 :focus {
	outline: none;
}

/*All Fields when Active*/
.wpcf7 input[type="text"]:active, .wpcf7 input[type="email"]:active, .wpcf7 textarea:active,
.wpcf7 input[type="text"]:focus, .wpcf7 input[type="email"]:focus, .wpcf7 textarea:focus {
	background-color: #f8f8f8 !important;
	border: 2px solid #F6972B;
}

/*Send Button*/
.wpcf7  input[type="submit"] {
	padding: 10px 20px;
	background-color: #F6972B;
	color: #fff;
	text-align: right;
	border: 1px solid #F6972B;
	font-size:21px;
 	float: left;
}

/*Send button hover*/
.wpcf7 input[type="submit"]:hover {
	background-color: #F6972B;
	border: 1px solid #F6972B;
}

div.wpcf7-response-output {
	margin: 2em 0 1em;
	padding: 20px 10px;
	font-family: 'PT Sans', 'sans-serif';
	font-size: 1.2em;
}

div.wpcf7-mail-sent-ok {
	border: none;
	background-color: #F6972B;
	color: #fff;
}

div.wpcf7-mail-sent-ng {
	border: none;
	background-color: #F6972B;
	color: #fff;
}

div.wpcf7-spam-blocked {
	border: none;
	background-color: #F6972B;
	color: #fff;
}

div.wpcf7-validation-errors {
	border: none;
	background-color: #F6972B;
	color: #fff;
}

span.wpcf7-not-valid-tip {
	color: #F6972B;
 	font-size: 1em;
	display: block;
}
[/codesyntax]