html, body, .main-login {

}

.login-box, .register-box {
    width: 360px;
    margin: 0% auto;
	margin-bottom:20px !important;
}

.main-footer {
	position: absolute;
	margin:0; /* negative value of footer height */
	height: 40px;
	clear:both;
    padding: 8px 0 5px 0;
    font-size: 13px;
    text-align: center;
	width:100%;
}


/* Loader */
.background-spinner {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1055;
	background: #000;
	display:none;
}
.spinner {
	position: absolute;
	top: calc((100% / 2) - 100px);
	margin-left: calc((100% / 2) - 50px);
	z-index: 1055;
	background: #000;
}

.loader {
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #3498db;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


.alert a {
	text-decoration:none;
	margin-top: -2px;
}