
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: 18px;
	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%;
}

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

.login-wp{
	height: 100%;
	background: url(../images/login-bg.jpg) center center no-repeat;
	background-size: cover; 
	display: flex;
	justify-content: center;	
}

.login{
	align-self: center;
	padding-bottom: 50px;
}

.lg-ma{
	text-align: center;
	margin: 0 15px;
}

.lg-logo div{
	display: inline-block;
	background: url(../images/logo.png) left center no-repeat;
	background-size: 60px;	
	padding: 10px 0 10px 85px;
	text-transform: uppercase;
	font-size: 36px;	
}

.lg-ttl{
	font-size: 30px;
	font-weight: 300;
}

.lg-form{
	background-color: #FFF;
	width: 385px;
	padding: 35px 50px;
	-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/icons/user.png) left center no-repeat;	
}

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

.lgf-footer{
	display: flex;
	justify-content: space-between;	
	padding: 20px 0 0 45px;
}

.lgff-forgot{
	padding-bottom: 8px;
}

.lgff-forgot A:link, .lgff-forgot A:visited{
	font-size: 11px;
	font-weight: 400;
	text-decoration: none;
	color: #7F7F7F;
}

.lgff-remember{
	display: flex;
}

.lgff-remember div:first-child{
	padding-right: 10px;
}

.lgff-remember div:last-child{
	font-size: 11px;
	color: #E99B39;
}

.lgff-remember div input{
	margin: 0;
}

.lgff-R A:link, .lgff-R A:visited{
	display: inline-block;
	padding: 10px 20px;
	background-color: #E99B39;
	border-radius: 5px;
	color: #FFF;
	text-transform: uppercase;
	text-decoration: none;
	font-size: 11px;
	font-weight: 400;
}

.lgff-R span{
	display: block;
	position: absolute;
	left: -1px;
	top: -1px;
	width: calc(100% + 2px);
	height: calc(100% + 2px);
	background: url(../images/loading-o.gif) center center no-repeat #E99B39;
	cursor: default;
}

.designed{
	display: flex;
	justify-content: space-between;
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	padding: 15px 0;
	background-color: #FFF;
}

.designed div:first-child{
	padding-left: 20px;
}

.copyright{
	padding-right: 20px;
	text-align: right;
}

.copyright div{
	padding: 1px 0;
	font-size: 10px;
}

.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: #E99B39 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;
	bottom: 83px;
	width: 100%;
	text-align: center;
	font-size: 12px;
	color: #FF0000;	
}




