*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body{
	margin: 0;
	font-family: 'Playfair Display', serif;
	color: #fff;
	overflow: hidden;
	font-weight: 300;
	display: flex;
	align-items: center;
	justify-content: center;
}
section{
	position: relative;
	height: 100vh;
	width: 100%;
	background: url("images/background1.jpg");
	background-size: cover;
	background-position: center center;
}

.form-container{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: linear-gradient(rgba(0,0,0,0.3),rgba(0,0,0,0.3));
	width: 380px;
	padding: 50px 30px;
	border-radius: 20px;
	box-shadow: 13px 13px 50px #0d3754, -13px 13px 50px #64b3f4;
	
}
.logoform {
	height: 100px;
	margin: 0 auto;
}

h1{
	font-weight: 100;
	font-size: 2em;
	text-align: center;
	margin: 10px 0 1em 0;
}

.control input{
	width: 100%;
	display: block;
	padding: 10px;
	color: #222;
	border: none;
	outline: none;
	margin: 1em 0;
	border-radius: 15px;
}

.control input[type="submit"]{
	background: crimson;
	color: #fff;
	text-transform: uppercase;
	font-size: 1.2em;
	opacity: .7;
	transition: opacity .3s ease;
}

.control input[type="submit"]:hover{
	opacity: 1;
}

.link{
	text-align: center;
}

.link a{
	text-decoration: none;
	color: #fff;
	opacity: .6;
	transition: opacity .3s ease;
}

.link a:hover{
	opacity: 1;
	
}