
/* login */
body {
	background-color: #2c3234;
	background-image: url('imgs/login-background.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	display: block;
}
div#page-main-container {
	background-color: transparent;

	display: flex;
	flex-flow: row nowrap;
	height: 100%;
}
section#main-container {
	flex-basis: 33%;
	min-width: 320px;
	margin: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .8);

	display: flex;
	flex-flow: column nowrap;
	align-items: stretch;
}
section#page-filler {
	flex-basis: 67%;
	width: 100%;
}
header#logo {
	min-height: 172px;
	height: 172px;

	background-image: url('imgs/login-logo.png'); /* 94px */
	background-repeat: no-repeat;
	background-position: center center;
	border-bottom: 2px ridge white;
}
section#users-form-main-container {
	flex-grow: 1;
	display: flex;
	flex-flow: column nowrap;
	justify-content: center;
}
form {
	color: white;
}
a {
	color: white;
	text-decoration: none;
}
fieldset {
	text-align: center;
	border: 0;
	padding: 1em;
}
input[type="text"],
input[type="password"] {
	margin-top: 0.3em;
	padding: 0.3em;
	border: 1px solid #383434;
	box-sizing: border-box;
	border-radius: 4px;
	width: 50%;
	color: #333333;
}
input[type="submit"],
input[type="button"],
button {
	color: #333333;
	margin-top: 0.3em;
	cursor: pointer;
	background-color: white;
	border-radius: 4px;
	border: 1px solid #d0d0bf;
}

@media screen and (max-width: 480px){
	body {
		background-image: none;
	}
	section#main-container {
		flex-basis: auto;
		background-color: #485155;
	}
	section#page-filler {
		display: none;
	}
}