
html, body{	
	height: 100%;
	margin: 0;
	padding: 0;
	background-color: #FFF;		
	-webkit-animation: appearance 1s;
	animation: appearance 1s;			
	font-family: 'Montserrat', sans-serif;
	font-size: 15pt;
	color: #7F7F7F;
}

@-webkit-keyframes appearance {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}			

@keyframes appearance {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}	

img{
	border: 0;
	width: auto;
	max-width: 100%;
}

input{
	outline: none;
}

.wp{
	width: auto;
	max-width: 1920px;
	margin: 0 auto;				
}

.lg-header{
	display: flex;
	width: 100%;
	height: 137px;
	justify-content: center;
	background: url(../images/login/login-header.gif) left top repeat-x;	
}

.lg-header div{
	align-self: center;
	text-align: center;
	color: #FFF;
	font-size: 28pt;
}

.login{
	padding: 50px 15px 0;	
}

.lg-form{	
	width: auto;
	max-width: 385px;
	margin: 0 auto;
	padding: 20px 25px;
	background-color: #FFF;
	-webkit-box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.3);
	-moz-box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.3);
	box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.3);
	margin: 50px auto;
	position: relative;
	z-index: 1;	
}

.lgf-block{
	padding-left: 45px;
}

.lgf-user{
	background: url(../images/login/login-user.png) left center no-repeat;	
}

.lgf-pass{
	background: url(../images/login/login-pass.png) left center no-repeat;	
}

.lgf-footer{
	text-align: center;	
	padding-top: 10px;
}

.lgf-footer A{
	display: inline-block;
	padding: 10px 20px;
	background-color: #44A5E1;
	border-radius: 5px;
	color: #FFF;
	text-transform: uppercase;
	text-decoration: none;
	font-size: 10pt;
	font-weight: 400;
}

.lgf-footer span{
	display: block;
	position: absolute;
	left: -1px;
	top: -1px;
	width: calc(100% + 2px);
	height: calc(100% + 2px);
	background: url(../images/login/login-loading.gif) center center no-repeat #44A5E1;
	cursor: default;
	border-radius: 5px;
}

.hvr-outline-in {
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
	position: relative;
}

.hvr-outline-in:before {
	pointer-events: none;
	content: '';
	position: absolute;
	border: #44A5E1 solid 1px;
	border-radius: 5px;
	top: -10px;
	right: -10px;
	bottom: -10px;
	left: -10px;
	opacity: 0;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-property: top, right, bottom, left;
	transition-property: top, right, bottom, left;
}

.hvr-outline-in:hover:before {
	top: -3px;
	right: -3px;
	bottom: -3px;
	left: -3px;
	opacity: 1;
}

.lgf-err{
	position: absolute;
	left: 0;
	top: -45px;
	width: 100%;
	text-align: center;
	font-size: 11pt;
	color: #FF0000;	
}




