*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	font-family: "Open Sans", sans-serif;
	color: #fff;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}
section{
	position: relative;
	height: 100vh;
	width: 100%;
	background: url("../img/img-login.jpg");
	background-size: cover;
	background-position: center center;
}
.form-container{
	position: absolute;
	width: 40vh;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	background: linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.4));
	padding: 10px 20px;
	border-radius: 10px;
	box-shadow: 7px 7px 60px #0000DD;
}
.form-container img{
	width: 70px;
	height: 70px;
	margin-left: 35%;
	
}
h1{
	text-transform: uppercase;
	font-size: 1.5em;
	text-align: center;
	margin-bottom: 1em;
}
.control input{
	width: 100%;
	display: block;
	padding: 10px;
	color: #222;
	border: none;
    margin: 0.7em 0;
    border-radius: 10px;
}
.control button{
	width: 100%;
	height: 40px;
	border-radius: 10px;
	background: #DD0000;
	margin-top: 10px;
	margin-bottom: 10px;
}
.control button:hover{
	background: #fff;
	border: 3px solid #DD0000;
	color: #DD0000;
	transition-duration: 1s;
	cursor: pointer;
}
.link{
	text-align: center;
}
.link a{
	text-decoration: none;
	color: #fff;
	opacity: .6;
	transition: opacity .3s ease;
}
.link a:hover
{
	opacity: 1;
}
.link p {
    margin-top: 8px;
    font-size: 0.9em;
    color: #fff;
    opacity: 0.8;
}

.link p a {
    color: #DD0000;
    text-decoration: none;
    font-weight: bold;
}

.link p a:hover {
    text-decoration: underline;
}
footer {
	position: absolute;
	bottom: 0;
	width: 100%;
	text-align: center;
	padding: 10px 0;
	color: #fff;
	background-color: rgba(0, 0, 0, 0.6);
	font-size: 0.9em;
}