input.button, button.button, .button {
	min-width: 250px;
	padding: 10px 20px;
	border-radius: 10px;
	color: white;
	background-image: none;
	background-color: rgb(0, 51, 160);
	font-size: 16px;
	font-weight: 100;
	cursor: pointer;
	display: inline-block;
	text-align: center;
	transition: all 0.02s ease-in;
}
.button:hover {
	background-color: rgb(0, 31, 140);
}
.button.button--outline {
	border: 1px solid rgb(0, 51, 160);
	color: rgb(0, 51, 160);
	background-color: white;
}
.button.button--outline:hover {
	color: rgb(0, 31, 140);
	border: 1px solid rgb(0, 31, 140);
	background-color: white;
}
.button.button--cancel {
	font-size: 14px;
	font-weight: 400;
	color: #666;
	background-color: white;
}
.button.button--cancel:hover {
	color: #666;
	background-color: #ebebeb;
}
