html {
	height: 100%;
	font-family: Arial, serif;
}

*,
*:before,
*:after {
	box-sizing: inherit;
	color: inherit;
}



body {
	font-size: inherit;
	line-height: inherit;
	color: inherit;
	overflow: hidden;
	background-color: black;
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}




#login_container {
	width: 300px;
	height: 450px;
	position: absolute;
	padding: 20px;
	background: rgba(255,255,255,0.8);
	left: 50%;
	top: 50%;
	margin-left: -150px;
	margin-top: -240px;
}


#login_header {
	background-image: url('../images/logo-header.png');
	background-size: 300px;
	background-repeat: no-repeat;
	margin: 0px auto;
	width:  300px;
	height: 75px;
}

#permission_request{
	width: 300px;
	margin: 0px auto;
	margin-top: 30px;
	height: 120px;
}

.form {
	width: 300px;
	margin: 0 auto;
	text-align: center;
}

.form input {
	width: 100%;
	border: 1px solid #5e5e5e;
	margin: 0;
	padding: 15px;
	box-sizing: border-box;
	font-size: 14px;
}


.form button, .innsan-button {
	width: 270px;
	text-transform: uppercase;
	outline: 0;
	background: #f07d00;
	border: 0;
	padding: 15px;
	color: #FFFFFF;
	font-size: 14px;
	cursor: pointer;
}

.form .abort {
	background: #343434;
}

.form button:hover,
.form button:active,
.form button:focus {
	background: #6b6b6b;
}

.form .abort:hover,
.form .abort:active,
.form .abort:focus {
	background: #c45855;
}

.form .message {
	margin: 15px 0 0;
	color: #f0f9ff;
	font-size: 12px;
}

.form .message a {
	color: #fff;
	text-decoration: none;
}





/* ---------------------------------------------------------------- <Top Nav> ---------------------------------------------------------------- */

.topnav ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background-color: #333;
	position: fixed;
	/* Set the navbar to fixed position */
	top: 0;
	/* Position the navbar at the top of the page */
	width: 100%;
	/* Full width */
}

.topnav li {
	float: left;
}

.topnav li a {
	display: block;
	color: white;
	padding: 16px;
	text-decoration: none;
}


/* Main content */

.topnav {
	margin-top: 30px;
	/* Add a top margin to avoid content overlay */
}


