body {
	font-family: 'Advent Pro';
	margin: 25px;
}
* {
 	box-sizing: border-box;
}
input[type=text], select, textarea {
	background-color: white;
	padding: 12px;
	border: 1px solid #ccc;
	border-radius: 4px;
	width: 100%;
	-webkit-appearance: none;
}
input[type=range] {
	width: 100%;
}
input[type=radio] {
}
label {
	display: inline-block;
}
input[type=button] {
	background-color: #005CC8;
	color: white;
	padding: 12px 20px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	width: 100%;
	margin-top: 10px;
	-webkit-appearance: none;
}
input[type=button]:hover {
	background-color: #2874CF;
}
.container {
	border-radius: 5px;
	background-color: #ECF0F1;
	padding: 20px;
	max-width: 475px;
}
.vam {
	padding-top: 3px;
	padding-bottom: 3px;
	margin-top: auto;
	margin-bottom: auto;
}
.grid {
	display: grid;
	grid-gap: 10px;
	grid-template-columns: 175px auto;
}
