*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body{
	font-family: sans-serif;
	min-height: 100vh;
	color: #555;
	background-color: white;
}

.page{
	width: 100%;
	border:  thin solid #e4e4e4;
	margin: 0 auto;
	padding: 10px 30px 40px 30px;
/*	padding-top: 30px;*/
}

form{
	width: 100%;
}

select{
	display: block;
	margin-top: 20px;
	width: 100%;
	padding: 10px;
	font-size: 16px;
}
select:focus{
	outline: none;
}

p.out{
	height: 40px;
	line-height: 40px;
	font-size: 18px;
}
p.out span{
	color: #2d6ca9;
	font-weight: bold;
}

button{
	display: inline-block;
	padding: 10px 25px;
	font-size: 16px;
	margin-top: 30px;
}