@import url('https://fonts.googleapis.com/css?family=Poppins:400,600');

html, body {
	height: 100%;
	overflow: hidden;
}
body {
	background: #000 url(../img/bg.jpg) no-repeat bottom center;
	background-size: cover;
	margin: 0px;
	padding: 0px;
}
* {
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	outline: none;
	color: #000;
}
section {
	width: 100vw;
	height: 100vh;
	padding: 0px;
	background: rgba(0, 0, 0, 0.3);
	display: grid;
	grid-template-columns: auto;
	justify-items: center;
	align-items: center;
}
form {
	
	padding: 20px 40px;
	margin: 0 auto 0 auto;
	text-align: center;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(8px);
	border-radius: 10px;
	border: #FFF 1px solid;
}
form span {
	display: block;
	text-align: center;
	padding: 0 0 25px 0;
}
img {
	display: block;
	padding: 0px;
	margin: 0 auto 30px auto;
	max-width: calc(100vw - 100px);
	width: 80px;
	height: auto;
}
h1 {
	font-size: 24px;
	padding: 0px;
	margin: 0 0 20px 0;
}
form label {
	display: block;
	margin-top: 10px;
	text-align: center;
}
input[type=email], input[type=password] {
	padding: 4px 22px 4px 6px;
	color: #000;
	font-size: 14px;
	line-height: 25px;
	margin: 0 auto 15px auto; 
	display: block;
	border: none;
	width: 244px;
	border-bottom: #000 1px solid;
	background: none;
}
input[type=email] {
	background: url('../img/user.svg') no-repeat center right;
	background-size: 20px auto;
}
input[type=password] {
	background: url('../img/password.svg') no-repeat center right;
	background-size: 15px auto;
}
input[type=submit] {
	background: #000;
	padding: 4px 20px 4px 20px;
	color: #FFF;
	border: #000 1px solid;
	font-size: 16px;
	font-weight: 500;
	line-height: 25px;
	transition: all 0.5s;
	margin: 20px auto 0 auto;
	display: block;
	width: 272px;
	border-radius: 7px;
	cursor: pointer;
	cursor: hand;
}
input[type=submit]:hover {
	background: transparent;
	color: #000;
}
::placeholder {
	color: rgba(0, 0, 0, 0.5);
}
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
    -webkit-transition-delay: 9999s;
    transition-delay: 9999s;
	color: #000;
}