html, body {
	width:100%;
	height:100%;
}
body {
	margin: 0;
	padding: 0;
	font-family: 'Poppins', sans-serif;
	/* 	background: url(bg.jpg); */
	background: -webkit-radial-gradient(0% 100%, ellipse cover, rgba(104,128,138,.4) 10%,rgba(138,114,76,0) 40%), linear-gradient(to bottom, rgba(57,173,219,.25) 0%,rgba(42,60,87,.4) 100%), linear-gradient(135deg, #670d10 0%,#092756 100%);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.box {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 400px;
	padding: 40px;
	background: rgba(0,0,0,.8);
	box-sizing: border-box;
	box-shadow: 0 15px 25px rgba(0,0,0,.5);
	border-radius: 10px;
}
.box h2 {
	margin: 0 0 30px;
	padding: 0;
	color: #FFF;
	text-align: center;
}

.box .inputBox {
	position: relative;
}
.box .inputBox input {
	width: 100%;
	padding: 10px 0;
	font-size: 12px;
	color: #FFF;
	letter-spacing: 1px;
	margin-bottom: 30px;
	border: none;
	border-bottom: 1px solid #FFF;
	outline: none;
	background: transparent;
}
.box .inputBox label {
	position: absolute;
	top: 0;
	left: 0;
	padding: 10px 0;
	font-size: 12px;
	color: #FFF;
	pointer-events: none;
	transition: .5s;
	animation: LabelOnLoad 1s forwards 0s ease;
}
@keyframes LabelOnLoad{
	0%{
		transform: rotate(0) translateY(-19px);
		opacity: 0;
	}
	100%{
		transform: rotate(0) translateY(0);
		opacity: 1;
	}
}
.box .inputBox input:focus ~ label, 
.box .inputBox input:valid ~ label {
	top: -19px;
	left:0;
	color: #03A9F4;
	font-size: 12px;
}
.box input[type='submit'] {
	background: transparent;
	border: none;
	outline: none;
	color: #FFF;
	background: #03A9F4;
	padding: 10px 20px;
	cursor: pointer;
	border-radius: 5px;
	font-size: 14px;
	width: 100%;
}
.box input[type='submit']:hover {
	background-color: rgba(3, 169, 244, 0.7);
}
@media(max-width: 720px){
	.box {
		width: 80%;
	}
}

footer span{
	left: 50%;
	transform: translate(-50%);
	bottom: 2rem;
	position: absolute;
	text-align: center;
	border-radius: 15px;
	background: #ffffff80;
	width: 230px;
	font-size: 12px;
	color: #000;
}

header span{
	position: absolute;
	width: 95px;
	margin: 10px;
	text-align: center;
	border-radius: 5px;
	background: #ffffff80;
	background: transparent;
	border: none;
	outline: none;
	color: #FFF;
	background: #2c3463;
	padding: 5px 10px;
	cursor: pointer;
	border-radius: 5px;
	font-size: 14px;
}

header span:hover{
	background: #2c3463b3;
}

header span a{
	text-decoration: none;
	color: #fff;
}

@media only screen and (max-height: 450px) {
	footer{
		display: none;
	}
}