#home-bg {
	z-index: -5;
    width: 100%;
    height: 100%;
    background-image:url('/lib/img/city-scape.jpg');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position:absolute;
    top:0;
    left:0;
}
#darkness {
	position:absolute;
	top:0;
    left:0;
	background-color: rgba(10,10,10,0.5);
	width: 100%;
    height: 100%;
    z-index: -4;
}
body {
	background: #0a0a0a;
   	font: 14px 'Roboto', sans-serif;
   	color: #ddd;
   	width: 100%;
   	height: 100%;
}
h3 {
	margin-top: 30px;
	color: #ddd;
	font-weight: bold;
	font-size: 14px;
}
a {
	color:#ddd;
	text-decoration: none;
}
input[type=text], input[type=password]{
    width: 250px;
    background:#1C1C1F;
    border: none;
    height: 20px;
    padding: 10px 10px;
    font-size: 15px;
    color: #ddd;
    margin: 5px 0;
    border:1px solid #444A59;
    outline-color: #925AFF;
}
button, .btn {
    background: #925AFF;
    border: none;
    padding: 7px 15px;
    border-radius: 4px;
    font-size: 14px;
    color: #ddd;
    font-weight: bold;
    margin: 5px 0;
    cursor: pointer;
}
.logo {
	background: url('/lib/img/mqp.png') center no-repeat;
	background-size: 100%;
	margin: 10px auto 0 auto;
	height: 60px;
	width: 190px;
}
#app-top {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:calc(100% - 41px);
	overflow-x: hidden;
    overflow-y: auto;
}
#creds {
	position:absolute;
	left: 50%;
	top: 50%;
  	transform: translateX(-50%) translateY(-50%);
    background: rgba(10,10,10,0.8);
    border: 1px solid #444A59;
    padding: 0 10px;
	width:320px;
	height:500px;
	text-align:center;
}
.navbar {
	position:absolute;
	left:0;
	bottom:0;
	z-index:10;
	width:100%;
	height:40px;
	background:#1C1C1F;
	color:#ddd;
	font-weight:bold;
	border-top:1px solid #0a0a0a;
}
.nav-left {
	position:absolute;
	left:50px;
}
.nav-right {
	position:absolute;
	right:50px;
}
.nav {
	display: inline;
	margin: 0 10px;
	height: 40px;
	line-height:40px;
	vertical-align: middle;
}
@media (max-width: 1050px) {
	.navbar {
		font-size:10px;
	}
	.nav-left {
		left:20px;
	}
	.nav-right {
		right:20px;
	}
}