html,body{
	display: grid;
	height: 100%;
	width: 100%;
	place-items: center;
	background-image: url("under-construction.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	    
}
.wrapper form
{
	margin:50px 0;
}
.wrapper form .email-field
{
	height: 50px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.wrapper
{
color: #fff;
max-width: 900px;	
}
.wrapper .title
{
	font-size:35px;
	font-weight:500;
}
.wrapper .title span
{
	font-size: 700;
}
form .email-field input{
	height: 100%;
	width: 100%;
	padding-left: 20px;
	border: none;
	outline: none;
	font-size: 18px;
	}

form .email-field button{
	height: 100%;
	width: 200px;
	outline: none;
	border: none;
	background: #2462ff;
	color: #fff;
	font-size:	20px;
	cursor: pointer;
	transition: background 0.3s ease;
}
form .email-field button:hover{
	background: #000;
	
}
