@charset "UTF-8";

input:not([type="submit"]), input:not([type="reset"]), textarea{
	outline:none;
	display:block;
	width:300px;
	padding:4px;
}

/*input:not([type="submit"]):active,
textarea:active, ([type="reset"]):active
input:not([type="submit"]):focus,
textarea:focus, ([type="reset"]):focus {
	
}*/



textarea{
	min-height:150px;
	resize:vertical;
	width:340px;
}

/** Styling buttons **/
input[type="submit"], input[type="reset"]{
	width:80px;
	cursor: pointer;
	background: none;
	border: none;
	color: #FF6600;
	padding: 10px;
	border: 1px solid #E0E0E0;
	 [disabled]transition: all 0.4s linear; 
}
 
input[type=submit]:hover, input[type=reset]:hover{
	color:#686868;
	border-color: #CECECE;
}
 
input[type="submit"]:active, 
input[type="reset"]:active,
input[type="submit"]:focus,
input[type="reset"]:focus{
	
	top:1px;
	color:#515151;
	background: linear-gradient(top,  rgba(234,234,234,1) 0%,rgba(242,242,242,1) 100%);
	box-shadow:0px -1px 1px #FFF inset,
	0 0 0px 5px #E0E0E0;
}
