html { font-size: 100%; height: 100%; }
body {
	font-family: 'Lato',verdana,arial;
	font-weight: 300;
	margin-top: 20px;
	background: #DFE5E9;
}

body.login {
	background: #dfe5e9; /* Old browsers */
	background: -moz-radial-gradient(center, ellipse cover, #dfe5e9 2%, #b2c0ca 100%); /* FF3.6+ */
	background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(2%,#dfe5e9), color-stop(100%,#b2c0ca)); /* Chrome,Safari4+ */
	background: -webkit-radial-gradient(center, ellipse cover, #dfe5e9 2%,#b2c0ca 100%); /* Chrome10+,Safari5.1+ */
	background: -o-radial-gradient(center, ellipse cover, #dfe5e9 2%,#b2c0ca 100%); /* Opera 12+ */
	background: -ms-radial-gradient(center, ellipse cover, #dfe5e9 2%,#b2c0ca 100%); /* IE10+ */
	background: radial-gradient(ellipse at center, #dfe5e9 2%,#b2c0ca 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dfe5e9', endColorstr='#b2c0ca',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
	color: #FFF;
}

.inbound:after { content: '.'; color: #8ECD44; }
.inbound.white{ color: #fff; }

.login-box {
	position: relative;
	max-width: 480px;
	background: #222D3A;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	padding: 20% 15%;
}

.login-logo{ text-align: center; font-size: 47px; line-height: 40px; }
.login-logo a, .login-logo a:hover{ text-decoration: none; }

.login-form input {
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.username:before{ content: "\f007"; }
.password:before{ content: "\f13e"; }

.username:before, .password:before{
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	line-height: 35px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: #555;
	position: absolute;
	right: 25px; 
	font-size: 16px;
	width: 10px;
	opacity: .7;
}



.btn.btn-login {
	padding: 7px 30px;
	display: block;
	border: 1px solid rgba(0, 0, 0, 0);
	color: #FFF;
	text-transform: uppercase;
	background: #12181F;
	font-size: 13px; 
	width: 100%; 
}

.btn.btn-login:hover {
	border: 1px solid #FFF;
	opacity: .8;
}

.login-links { text-align: center; }
.login-links a { 
	color: #FFF;
	display: inline-block;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
	opacity: .7;
	padding: 5px;
	text-decoration: none; 
}
.login-links a:hover{ opacity: 1; }

@media (min-width: 768px ) {
	body{ margin-top: 40px; }
	.login-box{ margin-top: 30%; }
}