@import url('https://fonts.googleapis.com/css?family=Ubuntu:400,500,700');
body {
	background-image: url('../gfx/blur_bg.jpg');
}

#login-container {
	max-width: 400px;
	position: absolute;
	top: 15%;
	left: 0;
	right: 0;
	margin: 0 auto;
	font-family: 'Ubuntu', sans-serif;
	font-size: 0.8em;
	text-transform: uppercase;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 10px;
	padding-bottom: 10px;
	color: #fafafa;
}

#login-container>div {
	padding: 15px;
	-moz-border-radius: 7px;
	-webkit-border-radius: 7px;
	border-radius: 7px;
	border-top: 1px solid tomato;
	border-bottom: 1px solid tomato;
	background-color: #00020c;
}

label {
	width: 150px;
	display: inline-block;
	font-weight: bold;
}

i {
	padding-left: 5px;
	padding-right: 5px;
}

h1,
h2 {
	font-size: 25px;
	line-height: 0.8em;
	display: block;
	margin: 15px 10px;
	font-family: 'Ubuntu', sans-serif;
	color: #38495a;
}

input[type='text'],
input[type='password'] {
	padding: 3px 5px;
	border-radius: 1px;
	outline: none;
	border: none;
	border-bottom: 1px solid #95adb7;
	color: #38495a;
	font-weight: bold;
}

input[type='text']:focus,
input[type='password']:focus {
	transition: 0.25s all linear;
	-webkit-transition: 0.25s all linear;
	border-bottom: 1px solid #38495a;
}

span.submit {
	display: block;
	position: relative;
}

input[type='submit'] {
	padding: 7px 10px;
	text-transform: uppercase;
	background: none;
	color: tomato;
	font-family: 'Ubuntu', sans-serif;
	font-weight: bold;
	outline: none;
	border: 1px solid #38495a;
	cursor: pointer;
	opacity: 0.8;
}

input[type='submit']:hover {
	transition: 0.25s all linear;
	-webkit-transition: 0.25s all linear;
	opacity: 1;
	color: tomato;
}

#sign-in-box {
	width: 550px;
	position: absolute;
	top: 15%;
	left: 0;
	right: 0;
	margin: 0 auto;
	text-align: center;
	display: block;
}

#loader {
	margin-bottom: 20px;
	display: block;
	margin: 20px auto;
}


/* Preloader */

#preloader {
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0;
	bottom: 0;
	background-color: #fafafa;
	/* change if the mask should have another color then white */
	z-index: 97;
	/* makes sure it stays on top */
}

#status {
	text-align: center;
	width: 300px;
	height: 300px;
	position: absolute;
	left: 50%;
	/* centers the loading animation horizontally one the screen */
	top: 50%;
	/* centers the loading animation vertically one the screen */
	background-image: url(../img/status.gif);
	/* path to your loading animation */
	background-repeat: no-repeat;
	background-position: center;
	margin: -150px 0 0 -150px;
	/* is width and height divided by two */
}
