contactform-body{
	display: flex;
	justify-content: center;
	align-items: center;
	
}

.contactform-container{
	width: 500px;

}

.contactform-group{
	margin-bottom: 1.5em;
}

.contactform-label{
	font-size: 1em;
	color: red;
	display: block;
	opacity: 1;
}

.contactform-control{
	box-shadow: none;
	border-radius: 3px;
	border-color: #ccc;
	border-style: solid;
	width: 100%;
	font-size: 1.25em;
}

.contactform-control:focus{
	border-color: orange;
	outline-color: red;
	box-shadow: orange;
}

.contact-btn{
	background: 0 0 #fff;
	border: 1px solid #aaa;
	border-radius: 3px;
	color: red;
	font-size: 1em;
	padding: 10 50px;
	text-transform: uppercase;
}

.contact-btn:hover{
	border-color: orange;
	color: orange;
}

textarea{
	resize: none;
}