a, input, select, textarea{
	transition: 0.3s ease-in 0s;
	-moz-transition: 0.3s ease-in 0s;
	-webkit-transition: 0.3s ease-in 0s;
	outline: none;
}

input[type="text"],
input[type="tel"],
input[type="number"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="file"],
select {
	background: #eee;
	height: 50px;
	padding: 0 15px;
	border: 1px solid #eee;
	width: 100%;
	box-sizing: border-box;

	font-family: inherit;
	font-weight: inherit;
	font-size: inherit;
	
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
    text-indent: 0.01px;
    text-overflow: '';
}

input[type="file"]{
	padding: 8px;
}

select {
	width:100%;
}

textarea {
	background: #eee;
	padding: 15px;
	border: 1px solid #eee;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;

	font-family: inherit;
	font-weight: inherit;
	font-size: inherit;
	outline: none;
}

input:hover, select:hover, textarea:hover,
input:focus, select:focus, textarea:focus {
	border:1px solid #aaa;
}


input[type="submit"] {
	width: 100%;
	background:	#2972ba;
	font-weight: 700;
	color: #fff;
	cursor: pointer;
	font-size: 1.1em;
	height: 50px;
	border: none;
}


input[type="submit"]:hover {
	background: #cb2032;
}
