@CHARSET "UTF-8";

/*
over-ride "Weak" message, show font in dark grey
*/
html {

	width: 100%;
	height: 100%;
}

body {
	/*background: url('../img/bac.png') no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;*/

	background-image: url('../../assets/img/background.png');
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-repeat: no-repeat;
}

.progress-bar {
	color: #333;
}

/*
Reference:
http://www.bootstrapzen.com/item/135/simple-login-form-logo/
*/

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	outline: none;
}

.form-control {
	position: relative;
	font-size: 16px;
	height: auto;
	padding: 10px;
	@include box-sizing(border-box);

	&:focus {
		z-index: 2;
	}
}



.login-form {
	margin-top: 100px;
	padding-bottom: 200px;
}

form[role=login] {
	color: #5d5d5d;
	background: #f2f2f2;
	padding: 26px;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	box-shadow: 1px 1px 4px
}

form[role=login] img {
	display: block;
	margin: 0 auto;
	margin-bottom: 35px;
}

form[role=login] input {
	font-size: 18px;
	margin: 5px 0;
}

form[role=login] button {
	font-size: 18px;
	margin: 15px 0;
}

form[role=login]>div {
	text-align: center;
}

.form-links {
	text-align: center;
	margin-top: 1em;
	margin-bottom: 10px;
}

.form-links a {
	color: #aaa;
	text-decoration: none;
}

h5 {
	color: #bf201a;
	font-size: 15px;
	font-family: arial;
	font-weight: 100 !important;
}