/* I always reset all the html elements */
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: sans-serif;
}

body{
	min-height: 100vh;
	color: #555;
	padding-top: 30px;
}

form{
	max-width: 400px;
	margin: 0 auto;
	/*border-top:  thin solid #e4e4e4;*/
	padding: 20px 30px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
	font-size: 18px;
	background-color: white;
}

form label{
	display: block;
	margin-bottom: 20px;
	/*padding-left: 5px;*/
	color: #32749a;
	font-weight: bold;
}

form button{
	background: #32749a;
	color: white;
	border: none;	
	padding: 15px;
	width:  100%;
	font-size: 16px;
	margin-top: 40px;
	cursor: pointer;
}

form button:active{
	background-color: green;
}

.checkboxes{
	margin-top: 20px;
}
.checkboxes input{
	width: auto;
	display: inline-block;
}
.checkboxes span{
	padding-left: 20px;
}
.checkboxes span:nth-child(2){
	padding-left: 0;
}
.checkboxes{}

.out{
	font-size: 18px;
	line-height: 28px;
	margin-top: 30px;
}

.out p{
	font-weight: bold;
	color:  #32749a;
	margin-bottom: 10px;
}
