//	Mixins
//		Base
@mixin input-base() {
	background: $white;
	border-radius: 0.5em;
	border: 1px solid $black;
	line-height: 1;
	padding: 0.7em 1.285em;
	width: 100%;
	max-width: 100%;
	height: 2.841em;
	display: block;
	transition: all $speed $easing;

	&:focus {
		border-color: $grey;
	}
}