textarea {
	height:50px;
	padding:20px;
	margin-bottom:20px;
	overflow:auto;
}
	
.formSecWrap {
	float: left;
	margin-left:40px;
	margin-top:20px;
	width:100%;
}

input[type="text"], input[type="password"], input[type="email"], textarea, select {
    background: #666;
    border: none;
    border-radius: 2px;
    color: #fff;
    display: block;
    margin: 0 0 10px 0;
    outline: medium none;
    padding: 4px 4px;
    width: 90%;
	font-family:Arial, Helvetica, sans-serif;
	font-size: 14px;
	
}
input[type="text"]:focus, input[type="password"]:focus, input[type="email"]:focus, textarea:focus {
    box-shadow: 0 0 7px #fff;
}

.formWrap label{
	margin: 0 0 2px 0;
}
.formWrap input[type="submit"]{
	margin: 10px 0 20px 0;
	float: right;
}

a.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
	background: #e97d58; 
	border: none;
	padding: 4px 12px;
	border-radius: 0;
	color: #fff;
	display: inline-block;
	font-size: 13px;
	text-decoration: none;
	cursor: pointer;
	margin: 0 5px 10px 0;
	line-height: 21px;
	-webkit-appearance: none;
}
a.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover {
	background: #e7673b;  
}