button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	background-color: $color__link;
	border: 1px solid $color__link;
	color: #fff;
	@include font-size(1);
	font-weight: bold;
	line-height: 1;
	padding: .75rem 1.25rem;
	transition: color 0.25s ease-in-out, background 0.25s ease-in-out;

	&:hover,
	&:active,
	&:focus {
		background-color: $color__link-hover;
		border-color: $color__link-hover;
		color: #fff;
	}
}
