input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1.875rem #fff inset !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

input[type=text],
input[type=email],
input[type=password],
input[type=color],
input[type=date],
input[type=datetime-local],
input[type=email],
input[type=month],
input[type=number],
input[type=range],
input[type=search],
input[type=tel],
input[type=time],
input[type=url],
input[type=week],
textarea,
select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: 1.5rem;
	margin: 0;
	width: 100%;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
	font-family: inherit;
	color: rgba(84,86,76,.85);
	-webkit-text-fill-color: rgba(84,86,76,.85);
	font-size: 1.1875rem;
	height: 3rem;
	padding: .75rem 1.125rem;
	border: .125rem solid transparent;
	font-weight: 700;
}

input[type=checkbox],
input[type=radio] {
	cursor: pointer;
	margin: 0 .75rem 0 0;
	float: left;
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 1.25rem;
    height: 1.25rem;
    background: #fff;
    position: relative;
    vertical-align: top;
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    transition: none;
    padding: 0;
    border-radius: 1.25rem;
}

input[type=checkbox]:checked,
input[type=radio]:checked {
	background: #90c340;
}

label {
	cursor: pointer;
	font-size: .875rem;
	font-weight: 400;
	text-transform: none;
	color: #fff;
}

select {
	cursor: pointer;
	appearance: none;
	background: #fff url(../svg/misc/select.svg) right .75rem center no-repeat;
	background-size: 1.25rem 1.5rem;
	padding: 0 1.125rem
}

input[type=submit],
button.btn {
	font-family: inherit;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: inline-block;
	border: none;
	border-radius: 1.5rem;
	text-transform: uppercase;
	text-align: center;
	cursor: pointer;
	width: auto;
	height: 3rem;
	color: rgba(84,86,76,.85);
    background: #90c340;
    padding: .875rem 2.5rem;
    display: inline-block;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    line-height: 100%;
    font-size: 1.375rem;
    font-weight: 700;
	-webkit-transition: all .25s ease-in-out;
	-moz-transition: all .25s ease-in-out;
	-o-transition: all .25s ease-in-out;
	transition: all .25s ease-in-out;
}

input[type=submit]:hover {
	color: #fff;
}

textarea {
	height: 8rem;
	min-height: 8rem;
	min-width: 100%;
	max-width: 100%;
	width: 100%;
	resize: none;
}

input:focus,
textarea:focus {
	outline: 0;
}

select::-ms-expand {
    display: none;
}

::-ms-clear {
	display: none;
}

::-webkit-input-placeholder {
	color: #EF7737;
}

:-moz-placeholder {
	color: #EF7737;
}

::-moz-placeholder {
	color: #EF7737;
}

:-ms-input-placeholder {
	color: #EF7737;
}