<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
button,
.button {
	background-color: #30BFFA;
	color: white;
	border: none;
	box-shadow: none;
	font-size: 17px;
	border-radius: 3px;
	padding: 15px 35px;
	margin: 10px 0 40px;
	cursor: pointer;
}
button:focus,
.button:focus {
	outline: none;
}
button:hover,
.button:hover {
	background-color: #a1d9f2;
}
button:active,
.button:active {
	background-color: #81ccee;
}
button.cancel,
.button.cancel {
	background-color: #D0D0D0;
}
button.cancel:hover,
.button.cancel:hover {
	background-color: #c8c8c8;
}
button.cancel:active,
.button.cancel:active {
	background-color: #b6b6b6;
}

</pre></body></html>