.container {
	width: 100%;
	height:100vh;
	background-color: white;
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact form {
	background-color: white;
	display: flex;
	flex-direction: column;
	padding: 2vw 4vw;
	width: 90%;
	max-width:600px;
	border-radius: 10px;
}

form h3{
	color:#5E9AD6;
	font-size: 4vh;
	margin-bottom: 20px;
	margin-top:50px;
	margin-right: auto;
	margin-left: auto;
}

form input, form textarea{
	border: 0;
	margin:10px 0;
	padding: 20px;
	outline:none;
	background: #f5f5f5;
	font-size: 16px;
}

.contact button{
	padding:15px;
	background: #5E9AD6;
	color:#fff;
	font-size:18px;
	border:0;
	outline:none;
	cursor:pointer;
	width:150px;
	margin:20px auto 0;
	border-radius: 30px;
}