.submit-button {
	font: normal 1.1rem var(--font-sans);
	line-height: 50px;
	height: 50px;
	padding: 0 2rem;
	-webkit-transition: all 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
	-moz-transition: all 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
	-ms-transition: all 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
	-o-transition: all 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
	transition: all 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
	color: var(--white);
	border: 0;
	border-radius: 0;
	background-color: var(--green);
}
.submit-button:hover {
	background-color: #008080;
}
.submit-button:active,
.submit-button:focus {
	cursor: wait;
	background-color: #004d4d;
}
