html, body{
	display: table;
	background-color: #d7e3eb;
}
::-webkit-scrollbar-thumb{
    border-radius: 10px;
    background: #077bc1;
	border: 4px solid #323232;
	transition: all 0.3s ease;
}
::-webkit-scrollbar-thumb:hover{
    background-color: #f74b4b;
}
::-webkit-scrollbar{
    width: 16px;
    background-color: #323232;
}
div.logincontainer{
	display: table-cell;
	vertical-align: middle;
}
div.loginbox{
	width: 400px;
	max-width: 100%;
	margin: 0 auto;
	background-color: #FFF;
    border-radius: 5px;
	box-shadow: 0 2px 5px 0 rgba(0,0,0,.16), 0 2px 10px 0 rgba(0,0,0,.12);
	overflow: hidden;
}
div.loginbox div.header{
	padding: 10px;
	background-color: #f7f7f7;
	border-bottom: 1px solid #dadada;
}
div.loginbox div.header div.logo{
    height: 100px;
    background-image: url(../../../assets/logo/full_black.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0 auto;
}
div.loginbox div.header div.description{
	text-transform: uppercase;
    color: #077bc1;
    text-align: center;
    font-weight: bold;
    font-family: 'Open Sans Condensed';
    text-shadow: 0 0 2px #FFF, 0 0 2px #FFF, 0 0 2px #FFF, 0 0 2px #FFF, 0 0 2px #FFF, 0 0 2px #FFF, 0 0 2px #FFF, 0 0 2px #FFF, 0 0 2px #FFF, 0 0 2px #FFF;
}
div.loginbox div.form{
	padding: 20px;
}
div.loginbox div.form div.caption{
    text-transform: uppercase;
    text-align: center;
    color: #077bc1;
    font-weight: bold;
    font-size: 30px;
	line-height: 1;
    margin: -10px 0;
}
div.loginbox div.form div.form-input{
	position: relative;
	padding-top: 18px;
}
div.loginbox div.form div.form-input div.label{
	position: absolute;
	top: 18px;
	color: #BBB;
	font-size: 13px;
	line-height: 30px;
	cursor: text;
	transition: top 0.2s ease-in-out, font-size 0.2s ease-in-out;
}
div.loginbox div.form div.form-input.focused div.label, div.loginbox div.form div.form-input.written div.label{
	color: #077bc1;
	font-size: 11px;
    top: 0;
}
div.loginbox div.form div.form-input input{
	position: relative;
	width: 100%;
	border: 0;
	box-shadow: inset 0 -1px 0 #DDD;
	background-color: transparent!important;
	transition: box-shadow 0.3s ease-in-out;
	font-size: 16px;
	line-height: 30px;
	outline: none;
}
div.loginbox div.form div.form-input.focused input, div.loginbox div.form div.form-input.written input{
	box-shadow: inset 0 -2px 0 #6cc7ff;
}
div.loginbox div.form a{
	text-decoration: none;
}
div.loginbox div.form div.button{
    width: 100%;
	margin-top: 10px;
    text-align: center;
    color: #FFF;
    background-color: #999;
    line-height: 35px;
    border-radius: 5px;
    box-shadow: inset 0 -4px rgba(0,0,0,0.1), inset 0 4px rgba(255,255,255,0.2);
	transition: background-color 0.1s linear;
	cursor: pointer;
}
div.loginbox div.form div.button.disabled{
	opacity: 0.6;
	cursor: not-allowed;
}
div.loginbox div.form div.button:not(.disabled):hover{
	background-color: #BBB;
}
div.loginbox div.form div.button:not(.disabled):active{
	background-color: #888;
}
div.loginbox div.form div.button.red{
	background-color: #077bc1;
}
div.loginbox div.form div.button.red:not(.disabled):hover{
	background-color: #6cc7ff;
}
div.loginbox div.form div.button.red:not(.disabled):active{
	background-color: #015486;
}
div.loginbox div.g-recaptcha{
    margin: 20px auto 0 auto;
    display: table;
}
div.loginbox div.footer{
	padding: 10px;
	background-color: #f7f7f7;
	border-top: 1px solid #dadada;
	text-align: center;
	line-height: 25px;
	font-family: 'Open Sans Condensed';
}
div.loginbox div.footer a{
	font-weight: bold;
	color: #077bc1;
	text-decoration: none;
}
div.loginbox div.footer a:hover{
	text-decoration: underline;
}
