@charset "utf-8";
/*Form Styles*/
.myform{
	width: 100%;
	padding: 0px;
}
.half{
	width: 49%!important;
	float: left;
}

.rightt{float: right!important;}

.myform input, .myform textarea{
	display: block;
	float: left;
	width: 100%;
	line-height: 36px;
	margin-top: 10px;
	background-color: #ddd;
	border: 0px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 10px 20px;
	border-bottom: 3px solid firebrick;
}

.myform textarea{
	height: 320px;
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
}

#captcha{
	width: 49%;
	margin-top: 10px;
	height: 60px;
	float: left;
	border: none;
	outline: none;
	margin-bottom: 0;
}
.myform a{
	margin-top: 10px;
	line-height: 60px;
	background-color: #444;
	text-decoration: none;
	display: block;
	padding: 0px 10px;
	width: 49%;
	color: white;
	float: right;
	text-align: center;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.myform i{
	width: 60px;
	height: 60px;
	line-height: 60px;
	text-align: center;
	color: white;
	margin-right: 10px;
}
.wrap{
	width: 100%;
	height: 70px;
}
.myform input[type=submit] {
	background-color: #222;
	color: #FFF;
	border-color: #222;
}

.myform input:focus, .myform textarea:focus { 
	border-bottom: 3px solid green;
	-webkit-transition: ease 0.9s;
	-o-transition: ease 0.9s;
	transition: ease 0.9s;
	outline: none;
}

@media screen and (max-width: 40em ) {
	.myform span{
		display: none;
	}
	.half{
		width: 100%!important;
	}
	.myform a {
		float: right;
	}
}
