

.mainContainer{
	padding: 7%;
	display: flex;
	justify-content: space-around;
}
.rightSide img{
	width: 100%;
	height: auto;
}
.rightSide{
	width: 45%;
}
.leftSide{
	width: 45%;
	background-color: white;

}

.form{
	display: flex;
	align-items: stretch;
	justify-content: center;
}

.form form{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	
}
.formItem{
	display: flex;
	justify-content: center;
	align-items: center;
	
}
input {
	width: 75%;
	padding: .5em;
	border-radius: 15px;
	margin-top: .75em;
}

.message{
	width: 100%;
}

textarea{
	width: 75%;
	height: 4em;
	padding: .5em;
	border-radius: 15px;
	margin-top: .75em;
	font-family: open-sans;
}
@media screen and (max-width: 630px) {
	.mainContainer{
		display: block;
		padding: 7% 0;
	}
	.rightSide {
		display: none;
	}
	.leftSide {
		width: 100%;
		padding: 7% 0;
	}
	
}
