/*************************************
GENERAL STYLES
*************************************/
body
{
  background: url('/images/login_bg.jpg');
  background-position: center center;
  background-attachment: fixed;
  font-family: 'Open Sans', sans-serif;
}


.inner-container {
	background-color: rgba(255, 255, 255, 0.9);
	max-width: 480px;
    display: block;
    margin: 110px auto;
    padding: 20px;
    border-radius: 15px;
}

.inner-container h1 {
	color: #536186;	
}

.black_text,
.black_text:hover,
.black_text:active {
	color: #555;
}

.logout-reason
{
	color: #8d1919;
}

#login-div img {
	margin-left: auto;
    margin-right: auto;	
}

/*************************************
ALERT STYLES
*************************************/

.alert-danger {
	position: absolute;
    width: 100%;
    top: 0;
    border-radius: 0;
    background-color: #de0808;
    background-image: none;
    color: white;
    border: none;
	visibility: hidden;
}

.alert-success {
    position: absolute;
    width: 100%;
    top: 0;
    border-radius: 0;
    background-color: green;
    background-image: none;
    color: white;
    border: none;
    visibility: hidden;
}


/*************************************
FORM STYLES
*************************************/

.form-control,
button.btn-primary {
	height: 50px;
	border-radius: 10px;
	width: 100%;
	display: block;
	margin: 20px 0;
}

button.btn-primary {
	background-color: #536186;
	border: none!important;
    outline: none!important;
}

button.btn-primary:hover,
button.btn-primary:active,
button.btn-primary:focus {
	background-color: #536186!important;
	opacity: 0.9;
	outline: none;
	border: none!important;
}

.form-control,
button.btn-secondary {
	height: 50px;
	border-radius: 10px;
	width: 100%;
	display: block;
	margin: 20px 0;
}

button.btn-secondary {
	background-color: #e0ecdf;
	border: none!important;
    outline: none!important;
}

button.btn-secondary:hover,
button.btn-secondary:active,
button.btn-secondary:focus {
	background-color: #e0ecdf!important;
	opacity: 0.5;
	outline: none;
	border: none!important;
}


/*************************************
BootBox styles for popup at login
*************************************/

.modal-footer {
	text-align: center;
}

.bootbox-body
{
	margin-top: 30px;
    margin-bottom: 30px;
    font-size: xx-large;	
}

.modal-header
{
	background-color: #5bc0de;	
}

.modal-title 
{
    font-size: xx-large;		
}

.btn-info
{
    height: 50px;
    width: 25%;	
}

/*************************************
FOOTER STYLESs
*************************************/

html {
  position: relative;
  min-height: 100%;
}
body {
  	/* Margin bottom by footer height */
	margin-bottom: 150px;
	text-align: center;
}
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  /* Set the fixed height of the footer here */
  height: 60px;
  background-color: #333;
}

footer.footer .container-fluid span {
    color: white;
    font-weight: 300;
	padding-right: 15px;
	padding-left: 15px;
}

footer.footer .container-fluid span.footer-text-bottom {
	margin-top: 5px;
}

footer.footer .container-fluid {
	padding: 20px 15px;
}

.footer-text {
	padding-right: 0!important;
	padding-left: 0!important;
}

/*************************************
MEDIA QUERIES
*************************************/

@media (max-width: 500px) {
	
	.hide-on-mobile {
		display: none;
	}
	
	.block-on-mobile {
		display: block;
	}
	
	footer.footer .container-fluid {
		padding: 8px 15px;
	}
}

@media (max-width: 650px) {
	
	.inner-container {
	max-width: 90%;
	}
}








