* {
	box-sizing:border-box;
}
body, html {
	font-family "Roboto", sans-serif;
	background:DarkTurquoise;
}
.main-panel {
	width: 100%;
	max-width:900px;
	margin: 20px auto;
	background: white;
	padding:20px 10px 50px 10px;
	border-radius:5px;
}
h1 {
	font-size: 35px;
	text-align: center;
	margin:0px;
}
.row {
	display:flex;
}
.form-group {
	margin-top:15px;
	padding: 10px;
	flex-direction: column;
	display: flex;
	width: 100%;
}
input, select {
	width:100%;
	padding:10px;
	height:40px;
	border:1px solid black;
	border-radius:5px;
	font-size: 16px;
	margin-top:5px;
}
input[type="radio"], input[type="checkbox"] {
	width: 17px;
	height:17px;
	margin-left:5px;
	position:relative;
	top:2px;
}
button {
	border:none;
	width:100%;
	height:42px;
	font-size:16px;
	cursor:pointer;
	margin-top:40px;
	border-radius:5px;
	background: DarkTurquoise;
	color: white;
}
/* Mobile Version */
@media screen and (max-width: 600px) {
.row {
 flex-wrap: wrap;
}
}