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 {
	width:100%;
	background:#ececec;
	height:42px;
	color:#606060;
	
	padding: 0 15px;
	border: 0;
	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 {
    background:  url(select.png) right no-repeat !important;
	padding:0 !important
}

textarea {
	background: #f5f5f5;
	padding: 15px;
	border: 1px solid #ccc;
	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:	#a41e22;
	color: #fff;
	cursor: pointer;
	font-size: inherit;
	height: 50px;
	border: none;
	
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
}

input[type="submit"]:hover {
	background: #dc3c41;
	color: #fff;
}


input[type="checkbox"],
input[type="radio"]{
    width: 13px;
    height: 13px;
    border: 1px solid #000;
    appearance: none;
    -webkit-appearance: none;
    display: inline-block;
    vertical-align: middle;
    background-position: center;
    transition: .2s;
    -moz-transition: .2s;
    -webkit-transition: .2s;
    vertical-align: sub;
}
input[type="radio"]{
border-radius:50%;
}
input[type="checkbox"]:checked,
input[type="radio"]:checked{
	border: 1px solid #184694;
	background: #184694;
}

input[type="checkbox"] ~ label,
input[type="radio"] ~ label {
	display: inline-block;
	vertical-align: middle;
}