
label {
	font-size: 15px;
	color: #fff;
	line-height:22px;
}
form {
	float: left;
	/*border: 1px solid #ddd; */
		padding: 0px 40px 20px 10px;
	margin: 0px;
	width: 270px;
}
fieldset {
	border: none;
}
#user-details {
	float: left;
	width: 230px;
}
#user-message {
	width: 250px;
}
input, textarea {
	padding: 8px;
	margin: 4px 0 10px 0;
	width: 280px;
	font-size: 15px;
	color: #555;
}
textarea {
	width:280px;
	height: 120px;
}
input:hover, textarea:hover {
}
input.submit {
	width: 100px;
	color: #333;
	text-transform: uppercase;
	margin: 5px 0px 0px 90px;
	background: #f9f607;
	border: none;
			font-weight:bolder;

		-webkit-transition: -webkit-box-shadow 0.3s linear;
		-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
}
input.submit:hover {
	-webkit-box-shadow: 0px 0px 20px #555;
	-moz-box-shadow: 0px 0px 20px #aaa;
	box-shadow: 0px 0px 20px #555;
	cursor:  pointer;
}


 @media only screen and (min-width : 240px) and (max-width : 767px) {
form {
	float: left;
	/*border: 1px solid #ddd; */
		padding: 0px 40px 20px 10px;
	margin: 0px;
	width:100%;
}


#user-details {
	float: none;
	width:100%;
}
#user-message {
	width:100%;
}
input, textarea {
	padding: 5px;
	margin: 4px 0 10px 0;
	background: #25293d;
	width:90%;
	font-size: 14px;
	color: #555;
	border: 1px #090c1a solid;
	
}
textarea {
	width:90%;
	height: 100px;
}
input:hover, textarea:hover {
	background: #25293d;
}
input.submit {
	width: 150px;
	color: #fff;
	text-transform: uppercase;
	margin: 5px 0px 0px 40px;
	background-color: #7ea113;
	border: none;
			font-weight:bolder;

	/* -- CSS3 Transition - define which property to animate (i.e. the shadow)  -- */
		-webkit-transition: -webkit-box-shadow 0.3s linear;
	/* -- CSS3 - Rounded Corners -- */
		-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	/* -- CSS3 Shadow - create a shadow around each input element -- */ 
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#fe7e00), to(#fd8918));
	background: -moz-linear-gradient(25% 75% 90deg, #fe7e00, #fd8918);
















}