html, body {
 height: 100%;
 position: relative;
}

body {
	background-color: #eceff1;
	color: #000;
	font-size: 0.9em;
	font-family: sans-serif, helvetica;
	margin: 0;
	padding: 0;
}

header {
	margin: 0;
	padding: 0.6em 2em 0.4em;
	background-color: #0f75bc;
	border-bottom: 2px solid #000;
	text-align: center;
}
header h1 {
	display: inline-block;
}
h1 {
	text-align: center;
	color: #fff;
	font-weight: normal;
	font-size: 1.75em;
}
h1 strong {
	font-weight: bold
}
h2 {
	font-size: 1.3em;
	font-weight: normal
}
footer {

	text-align: center;
	margin: 0;
	background-color: #2D4760;
	color: #fff;
	font-weight: 600;
	font-size: 1em;
	border-top: 2px solid #000;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100px;
	padding: 2.5em 0 0;
	box-sizing: border-box;
	position:absolute;
}
footer .built {
	color: #eabe6c;
}
.container {
	min-height:100vh;
	overflow: hidden;
	display: block;
	position: relative;
	padding-bottom: 100px; /* height of footer */
	box-sizing: border-box;
}

.content {
	padding: 1em 5em;
}
.logout {
	float: right;
	top: -40px;
	font-size: 1.2em;
	font-weight: 600;
	position: relative;
	display: block;
}
.logout a {
	color:#fff;
	text-decoration:none;
}
.logout a:hover {
	text-decoration:underline;
	color:#fff;
}
input[type="submit"], .button {
	padding: 10px 25px;
	border-radius: 5px;
	border: 2px solid #8cc63f;
	cursor: pointer;
	font-size: 1em;
	text-align: center;
	-webkit-transition-duration: 0.4s;
	transition-duration: 0.4s;
	color: white;
	background-color: #0f75bc;
	font-weight:600;
}
input[type="submit"]:hover, .button:hover {
	background-color: white;
	color: black;
	border: 2px solid #008CBA;
	text-decoration:none;
}

input[type="text"], input[type="password"]  {
	border: 1px solid #cacaca;
	padding: 5px;
	border-radius:5px;
}
.button {
	display: inline-block;
}
.back.button{
	display:inline-block;
	margin: 25px 15px;
}

.error{ 
	color:red;
}
.center {
	text-align:center;
}
.login-form {
	max-width:400px;
	margin: 50px auto 0;
	text-align:center;
	background-color: #fbfbfb;
	padding: 15px 0;
	border-radius: 20px;
	border: 1px solid #d5d5d5;
}
.login-form .login {
	display: block;
	max-width: 200px;
	width: 100%;
	margin: 5px auto;
	text-align: center;

}
.login-form .login-row {
	margin: 20px 0;
}

.login-form .login-row-last {
	margin: 30px 0 10px;
}
.login-form h3 {
	margin-bottom: 40px;
}
.login-form .error {
	float: left;
	width: 100%;
	margin-top: 25px;
	font-size: 1.2em;
	font-weight: 700;
}
.title {
	position: relative;
	width: 85%;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	display: block;
}
.version {
	position: absolute;
	left: 10px;
	top: 10px;
}
.updated {
	position: absolute;
	right: 10px;
	top: 10px;
}
li {
    margin-bottom: 1rem;
}