.formBox{
	margin-top: 25px;
	padding: 00px;
}

.inputBox{
	position: relative;
	box-sizing: border-box;
	margin-bottom: 25px;
}
.inputBox .inputText{
	position: absolute;
    font-size: 16px;
    line-height: 50px;
    transition: .5s;
    opacity: .5;
}
.inputBox .input{
	position: relative;
	width: 100%;
	height: 50px;
	background: transparent;
	border: none;
    outline: none;
    font-size: 16px;
    border-bottom: 1px solid rgba(0,0,0,.5);

}
.focus .inputText{
	transform: translateY(-30px);
	font-size: 15px;
	opacity: 1;
	color: #042c7d;

}
textarea{
	height: 100px !important;
}
.button{
	width: 100%;
    height: 50px;
    border: none;
    outline: none;
    background: #03A9F4;
    color: #fff;
}