@import url('normalize.css');
@import url('bootstrap.min.css');
body, 
html{
	height: 100%;
	width: 100%;
	font-size: 16px;
	position: relative; 
	background-color: rgba(161,215,255,1.00);
}
.login{
	width: 300px;
	border: 1px solid #E1E1E1;
	border-radius: 4px;
	padding: 15px;
	position: absolute;
	background-color: rgba(255,255,255,0.70);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	box-shadow: 1px 1px 5px #676767;
}
footer{
	background-color: #37413F;
	position: fixed;
	bottom: 0px;
	height: 25px;
	width: 100%;
	padding: 6px;
	color: #ECF0F1;
	text-align: center;
	font-size: 12px;
}
@media (max-width: 400px){
	.login{
		width: 90%;
	}
}