/*
	Theme Name: CSS3 Contact Form
	Date: April 2013
	Description: Basic HTML5/CSS3 contact form
	Version: 1.0
	Author: Christian Vasile
	Author URL: http://christianvasile.com
*/

/* ===========================
   ======= Body style ======== 
   =========================== */


h2 {
	margin-bottom: 20px;
}

/* ===========================
   ====== Contact Form ======= 
   =========================== */

input, textarea {
	padding: 10px;
	border: 1px solid #E5E5E5;
	width: 250px;
	color: rgba(0,0,0,1.00);
	box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 8px;
	-moz-box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 8px;
	-webkit-box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 8px;
	transition:ease-in-out all 0.2s;
	-webkit-transition:ease-in-out all 0.15s;
	-moz-transition:ease-in-out all 0.15s;	
}

input:hover, textarea:hover {
	background-color: rgba(239,78,152,0.50);
}


textarea {
	width: 100%;
	height: 150px;
	max-width: 400px;
	line-height: 18px;
	transition:ease-in-out all 0.3s;
	-webkit-transition:ease-in-out all 0.3s;
	-moz-transition:ease-in-out all 0.3s;
}


input:hover, textarea:hover,
input:focus, textarea:focus {
	border-color: 1px solid #C9C9C9;
	box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 8px;
	-moz-box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 8px;
	-webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 8px;
	text-align: left;
}

.form label {
	margin-left: 10px;
	color: #999999;
	text-align: left;
}

/* ===========================
   ====== Submit Button ====== 
   =========================== */

.submit input {
	width: 100px; 
	height: 50px;
	background-color: rgba(200,200,200,1.00); 
	color: #;
	font-size: 20px;
	font-weight: 500;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	transition:ease-in-out all 0.3s;
	-webkit-transition:ease-in-out all 0.15s;
	-moz-transition:ease-in-out all 0.15s;
	cursor: pointer;
}

.submit input:hover {
	border-radius: 5px 20px 5px 20px;
	background-color: rgba(239,78,152,1.00);
	color: rgba(255,255,255,1.00);
	text-align: center;
}
