body {
	margin: 0;
	padding: 0;	
	background-size: cover;
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-position: center top;
	background-color: #090220;
	font-family: sans-serif;
	height: 100vh;
}

.login-box{
	width: 320px;
	height: 380px;
	background: rgba(0, 0, 0, 0.4);
	color: #fff;
	top: 50%;
	left: 50%;
	position: absolute;
	transform: translate(-50%,-50%);
	box-sizing: border-box;
	padding: 70px 30px;
	border-radius: 20px;
	box-shadow: 0 0 50px rgba(0, 216, 255, 0.568);
}

.login-box .avatar{
	width: 100px;
	height: 100px;
	/*border-radius: 70%;*/
	position: absolute;
	top: -50px;
	left: calc(50% - 50px);
}
.login-box h1{
	margin: 0;
	padding: 0 0 20px;
	text-align: center;
	font-size: 26px;
}

.login-box label{
	margin: 0;
	padding: 0;
	font-weight: bold;
	display: block;
}

.login-box input{
	width: 100%;
	margin-bottom: 0px;
}

.login-box button{
	width: 100%;
	margin-top: 30px;
	margin-bottom: 15px;
}

.login-box input[type="text"],
.login-box input[type="password"]{
	border: none;
	border-bottom: 1px solid dimgrey;
	background: transparent;
	outline: none;
	height: 40px;
	color: #fff;
	font-size: 16px;
	margin-top: 20px;
}

.login-box button[type="submit"]{
	border: none;
	outline: none;
	height: 40px;
	background: #0296FC;
	color: black;
	font-size: 18px;
	border-radius: 20px;
}
.login-box button[type="submit"]:hover{
	background-color: #EDB208;
	box-shadow: 0 0 20px rgba(0, 216, 255, 0.568);
}

.login-box a{
	text-decoration: none;
	font-size: 12px;
	line-height: 20px;
	color: darkgray;
}

.login-box a:hover{
	outline: none;
 	text-decoration: none;
 	color: #72afd2;
}