form{
	width: 600px;
	height: 600px;
	float: left;
}

label{
	font-family: Quicksand;
	color: #555;
}

input{
	height: 40px;
	width: 600px;
	border-radius: 5px;
	border: 1px solid #ccc;
	padding-left: 7px;
	font-family: Quicksand;
	font-size: 15px;
}

input:focus{
	outline: none;
	border: 3px solid #ffab40; 
}

textarea{
	width: 100%;
	resize: none;
	font-family: Quicksand;
	padding-top: 5px;
	padding-left: 7px;
	border-radius: 5px;
	border: 1px solid #ccc;
	font-size: 15px;
}

textarea:focus{
	outline: none;
	border: 3px solid #ffab40;
}

input[type=submit]{
	background-color: #ffab40;
	font-size: 25px;
	color: white;
	font-family: Dosis;
}

.form-container{
	height: 150vh;
	width: 100%;
	background-color: #e7ecf0;
}

.top-spacer{
	width: 100%;
	height: 10vh;
}

.left-spacer{
	height: 90vh;
	width: calc(50% - 300px);
	float: left;
}

@media (max-width: 850px){
	form{
		width: 100%;
		height: 100vh;
	}

	input{
		width: 100%;
	}
	.form-container{
		height: 800px;
	}

	.top-spacer{
		display: none;
	}

	.left-spacer{
		display: none;
	}
}