@charset "utf-8";
/* CSS Document */
.contact-form{
	position:relative;
	width:100%;
	display:flex;
	justify-content: center;
  align-items: center;
}
.contact-title{
	position:relative;
	color:#fff;
	text-transform:uppercase;
	transition: all 4s ease-in-out;
	
}


.contact-title h1{
	display:flex;
	justify-content: center;
  align-items: center;
	font-size: 32px;
	line-height:10px;
	
	}

.contact-title h2{
	display:flex;
	justify-content: center;
  align-items: center;
	font-size: 16px;
	
}

form{
	
	transition: all 4s ease-in-out;
	
}

.form-control{
	width: 100%;
	background: transparent;
	border: none;
	outline: none;
	border-bottom:1px solid black;
	color:#fff;
	font-size:22px;
}

input{
	height:50px;
}

form.submit{
	background:#FF0004;
	border-color: transparent;
	color: 000;
	font-size:30px;
	font-weight:bold;
	letter-spacing:2px;
	height:50px;
	margin-top:20px;
}

form.submit:hover{
	background-color:#81AA01;
	cursor:pointer;
}
