/* --- LOGIN PAGE CSS --- */
body, html {
    font-family: Roboto, sans-serif;
    height: 100%;
    padding: 0px;
}
/* firefox/ie fix */
input[type="email"], input[type="password"], input[type="text"] 
{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    height: 42px; /* Increase height as required */
    margin-bottom: 30px;
    padding: 0 20px; /* Now only left & right padding */
}
/* end firefox/ie fix */
#background {
    background: url(../images/login_background.jpg) no-repeat 75% 1rem;
    background-color: #e9ecef;
    background-size: 120rem
}

@media(min-width: 768px) {
    #background {
        background-position:58% 1rem;
        background-size: 160%
    }
}

@media(min-width: 992px) {
    #background {
        background-position:68% top;
        background-size: 200rem
    }
}

@media(min-width: 1400px) {
    #background {
        background-position:top;
        background-size: 214rem
    }
}
.login-logo {
	display: block;
	margin-left: auto;
	margin-right: auto; 
	margin-bottom: 20px;
	margin-top: 20px;
}
.well-login {
	background-color: black;
	border-color: transparent;
	border-radius: 5px;
	opacity: 0.75;
	padding: 30px;
}
.text-login-title {
	color: #FFFFFF;
	font-family: Roboto Condensed, sans-serif;
	font-size: 40px;
	font-weight: 700;
	margin-bottom: 30px;
	text-transform: uppercase;
}
#login.a {
	font-family: Roboto;
	font-size: 16px;
	color: #26ADF9;
	text-decoration: underline;
}
#login.a:hover {
	color: #0C527A;
}
.input-group {
	margin-top: 30px;
	margin-bottom: 30px;
	font-size: 16px;
	line-height: 16px;
}
.form-control {
	padding: 25px 15px;
}
input {
	font-family: Roboto;
	font-size: 16px;
	line-height: 16px;	
}
hr {
	border-color: #777777;
	opacity: 0.5;
}
.text-login {
	color: #777777;
	font-family: Roboto;
	font-size: 16px;
	line-height: 16px;
}
/* --- end LOGIN PAGE CSS --- */
