html, body {
	padding: 0px;
	margin: 0px;
	height: 100%;
}

.login {
	width: 100%;
	height: 100%;
	display: grid;
	grid-template-columns: auto auto auto;
	grid-template-rows: auto auto auto;
	grid-gap: 10px;
}

.block {
	grid-area: 1 / 2;
	margin: auto;
}

.background {
	background: url('/img/loginbg.png') no-repeat center center fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	-webkit-animation: fadein 1.5s ; /* Chrome, Safari, Opera */
	animation: fadein 1.5s ;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -10;
}
.background::before {
	background-color: rgba(15, 15, 15, 0.6);
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
}
.gradient {
	background: #1f3649;
	background: -moz-radial-gradient(center, ellipse cover, #1f3649 0%, #17253d 44%, #040d11 100%);
	background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, #1f3649), color-stop(44%, #17253d), color-stop(100%, #040d11));
	background: -webkit-radial-gradient(center, ellipse cover, #1f3649 0%, #17253d 44%, #040d11 100%);
	background: -o-radial-gradient(center, ellipse cover, #1f3649 0%, #17253d 44%, #040d11 100%);
	background: -ms-radial-gradient(center, ellipse cover, #1f3649 0%, #17253d 44%, #040d11 100%);
	background: radial-gradient(ellipse at center, #1f3649 0%, #17253d 44%, #040d11 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@account-color-dark', endColorstr='#040d11', GradientType=1);
}


/* Chrome, Safari, Opera */
@-webkit-keyframes fadein {
	from {opacity: 0;}
	to {opacity: 1;}
}
/* Standard syntax */
@keyframes fadein {
	from {opacity: 0.2;}
	to {opacity: 1;}
}


.account-copyright {
  bottom: 10px;
  color: #BDBDBD;
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
}
@media screen and (max-height: 700px) {
   .account-copyright {
      position: relative;
	  margin-top: 40px;
   }
}