html body {
	padding:0;
	margin:0;
/*	background:#151F2B;*/
	
	background:#03A9F4;
	background: rgb(3,169,244);
	background: linear-gradient(312deg, rgba(3,169,244,1) 0%, rgba(33,150,243,1) 100%);
}

img.logo {
	width: 100%;
}

div.full {
	height:100vh;
	position:relative;
}

div.full > div {
	position:absolute;
	top: calc( 50vh - 65px );
}

div#logo-container {
	width:200px;
	left: 100px;
}

div.light {
	background:#03A9F4;
	background: rgb(3,169,244);
	background: linear-gradient(312deg, rgba(3,169,244,1) 0%, rgba(33,150,243,1) 100%);
	padding:0;
}

div#login-sidebar {
/*	background:#03A9F4;
	background: rgb(3,169,244);
	background: linear-gradient(312deg, rgba(3,169,244,1) 0%, rgba(33,150,243,1) 100%);
	padding:0;*/	
}

div#login-form {
	background:#151F2B;
}

div#login-form form {
    display: block;
    width: 50%;
    height: 200px;
/*    background: red;*/
    position: absolute;
    top: calc( 50% - 50px );
}

div#login-form form input[type=text], div#login-form form input[type=password] {
    font-size: 20px;
    line-height: 30px;
    height: 40px;
}

.left-inner-addon input {
    padding-left: 44px;
}

.left-inner-addon i {
    position: absolute;
    padding: 6px 0px;
    pointer-events: none;
    color: #95a5ab;
    font-size: 29px;
}

button[type=submit] {
	width: 100%;
    border-radius: 5px;
    background: #8BC34A;
    border-top: 1px solid #CDDC39;
    border-bottom: 1px solid #4CAF50;
    box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.75);
}

#recover-link {
	margin-top:15px;
	color:#FFF;
/*	font-size:0.8em;*/
	display:block;
}

.preload {
    position: absolute;
    left: calc( 50% - 100px );
    top: calc(50% + 100px);
    z-index: 100;
    width: 200px;
	display:none;
}

.preload-bar {
    display: block;
    background: #FFF;
    width: 0;
	height: 4px;
    border-radius: 4px;
}

label {
	color:#8e8c8c;
}

/* MOBILE */
@media only screen and (max-width: 768px) {
	
	html body {
		background:#03A9F4;
		background: rgb(3,169,244);
		background: linear-gradient(312deg, rgba(3,169,244,1) 0%, rgba(33,150,243,1) 100%);
		padding:0;
	}
	
	div.full {
		height:50vh;
	}
	
	div#login-sidebar {
		height:40vh;
		background:none;
	}
	
	div#login-form {
		height:60vh;
		background:none;
	}
	
	div#logo-container {
		top: calc( 20vh - 50px );
		left: calc( 50% - 100px );
	}
	
	div#login-form form {
	    display: block;
	    width: 100%;
/*	    height: 200px;*/
	/*    background: red;*/
/*	    position: absolute;*/
/*	    top: calc( 50% - 50px );*/
		top: 0;
		padding:20px;
	}
	
	div#login-form form input {
		border-radius:5px;
		width: calc( 100% - 30px );
	}
	
	button[type=submit] {
		width: calc( 100% - 30px );
	}
	
	label {
		color:#FFFFFF;
	}
}