.formBox{
	margin-top:0;
	padding-top: 50px;
	padding-right: 10px;
	padding-bottom: 20px;
	padding-left: 10px;
}
.formBox  h1{
	margin: 0;
	padding: 0;
	text-align: center;
	margin-bottom: 20px;
	text-transform: uppercase;
	font-size: 28px;
	
}
.inputBox{
	position: relative;
	box-sizing: border-box;
	margin-bottom: 20px;
	
}
.inputBox .inputText{
	position: absolute;
    font-family: 'Ubuntu Condensed', sans-serif;
	font-size: 16px;
    line-height: 50px;
    transition: .5s;
    opacity: .9;
	
}
.inputBox .input{
	font-family: 'Ubuntu Condensed', sans-serif;
	position: relative;
	width: 100%;
	height: 40px;
	background: transparent;
	outline: none;
	font-size: 16px;
	border-bottom-width: 1px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: dashed;
	border-left-style: none;
	border-bottom-color: #333;
	color: #600;
}
.focus .inputText{
	transform: translateY(-30px);
	font-size: 16px;
	opacity: 1;
	color: #000;
}
textarea{
	height: 100px !important;
}
.button{
	width: 50%;
    height: 50px;
    border: none;
    outline: none;
    background: #03A9F4;
    color: #fff;
}