html, body {
	font-size: 12px;
	/* background-color: #7f1320; */
}

.login-background {
	background-image: url("../../img/login_background.jpg");
	/* background-color: #7f1320; */
	background-position: 0 0;
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-size: cover;
}

.login-background > div.container-fluid {
	margin-top: 10%;
}

.login-container {
	height: 100%;
	width: 500px;
	box-sizing: border-box;
	background-color: rgba(255, 255, 255, 1);
	margin: 0;
	-webkit-box-shadow: 0px 0px 30px 10px rgba(0,0,0,0.5);
	-moz-box-shadow: 0px 0px 30px 10px rgba(0,0,0,0.5);
	box-shadow: 0px 0px 30px 10px rgba(0,0,0,0.5);
}

.login-logo {
	max-width: 200px;
	height: auto;
}

.login-form {
	width: 100%;
	margin-top: 50px;
}

input[type=text], input[type=password] {
	margin-bottom: 5px;
}

button[type=submit] {
	margin-bottom: 5px;
}