/**
* Awesome PHP Contact Form
* Sample Stylesheet
**/

.col-contact {
	width: 600px;
	min-height: 200px;
	margin: 0px auto 0px auto;
	padding: 0px;
}


fieldset {
	padding: 0px;
	margin-bottom: 20px;
}

legend {
	font-size: 14px;
	font-weight: bold;
	margin-left: 0px;
	margin-bottom: -10px;
	padding-left: 0px;
}

fieldset p {
	clear: both;
	padding-top: 10px;
	width: 400px;
}

fieldset p.first {
	padding-top: 0;
}

fieldset label {
	float: left;
	width: 120px;
	padding-top: 3px;
}

fieldset p span {
	float: right;
	width: 260px;
}

fieldset label span {
	float: none;
	width: auto;
	color: red;
	font-weight: bold;
	padding-left: 5px;
}

fieldset input, fieldset textarea, fieldset select {
	background: #FEFDED;
	border: 1px solid #cccccc;
	padding: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	resize: none;
}

fieldset input:focus, fieldset textarea:focus, fieldset select:focus {
	background: #ffffff;
	border: 1px solid #000000;
	outline: none;
}

fieldset input:hover, fieldset textarea:hover, fieldset select:hover {
	border: 1px solid #000000;
}

fieldset.captcha {
	width: auto;
}

fieldset.captcha p {
	width: 240px;
}

fieldset p.message {
	width: auto;
	padding-bottom: 0px;
}

fieldset.captcha input {
	margin-top: 5px;
}

input.button {
	border: 1px solid #222;
	background: #333;
	padding: 5px;
	width: 180px;
	border-radius: 5px;
	font-size: 18px;
	font-family: "Lucida Grande", "Trebuchet MS", Verdana, sans-serif;
	color: #fff;
	cursor: pointer;
}

input.button:hover {
	background: #444;
}

.error {
	background: #FB9E3A url(../includes/assets/error.png) no-repeat 11px 3px;
	border: 1px solid #000000;
	border-radius: 5px;
	font-size: 11px;
}

.error p {
	font-weight: bold;
	color: #6c1218;
	text-indent: 35px;
}

.error ul {
	color: #6c1218;
	text-indent: 20px;
	list-style: inside;
}

.error li {
	list-style: inside;
}

.success {
	background: #99ff99 url(../includes/assets/accept.png) no-repeat 11px 3px;
	border: 1px solid #336600;
	border-radius: 5px;
	font-size: 11px;
}

.success p {
	font-weight: bold;
	color: #336600;
	text-indent: 35px;
}

.required {
	font-size: 12px;
	padding-bottom: 15px;
}

