/************ Login Styling ************/

#login_page  {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background-image: url('../images/login_bg.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	z-index: 9999999 !important;
}

.login-form  {
	width: 400px;
	height: auto;
	margin: 0 auto;
	background-color: rgba(255,255,255,0.75);
	position: fixed;
	top: 30%;
	left: 50%;
	margin-left: -200px;
	border-radius: 8px;
	-webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,0.3);
	box-shadow: 0 0 10px 0 rgba(0,0,0,0.3);
}

.login_subcontainer  {
	width: 100%;
	height: auto;
	padding: 30px;
}

#login_header  {
	text-align: center;
	border-bottom: 3px solid #70bad7;
	color: #51a6cc;
	font-family: 'Montserrat', sans-serif;
	font-size: 20px;
	line-height: 20px;
	padding-top: 16px;
	padding-bottom: 12px;
}

#login_body  {
	background-image: url('../images/bp_logo_login.svg');
	background-size: 60% auto;
	background-position: center center;
	background-repeat: no-repeat;
}

.login-form input[type="text"], .login-form input[type="password"]  {
	width: 100%;
	height: auto;
	padding: 10px;
	border: 0;
	margin-bottom: 10px;
	font-family: 'Open Sans', sans-serif;
	font-weight: 500;
	font-size: 14px;
	color: #4691ce;
	background-color: rgba(255,255,255,0.9);
}

#uname  {}

#pass  {}

.login_entry_container  {padding-bottom: 8px;}

.login_button_container  {}

.loginbtn  {
	width: 100%;
	height: auto;
	cursor: pointer;
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	font-size: 14px;
	color: #FFF;
	border: 0;
	background-color: #51a6cc;
	padding: 14px;
	border-radius: 5px;
}

.loginbtn:hover  {background-color: #37d1c9;}

.login-form .error  {
	width: 100%;
	height: auto;	
}

.login-form .alert-warning,
.login-form .alert-danger,
.login-form .alert-success  {
	width: 100%;
	height: 100%;
	background-color: rgba(255,255,255,0.95);
	border-radius: 8px;
	position: absolute;
	top: 0;
	left: 0;
	padding-top: 22%;
	text-align: center;
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	font-size: 14px;
	line-height: 20px;
	padding-left: 30px;
	padding-right: 30px;
	color: #51a6cc;
}

#close_login_error  {
	width: 100%;
	height: auto;
	cursor: pointer;
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	font-size: 14px;
	background-color: #51a6cc;
	padding: 14px;
	margin-top: 14px;
	border-radius: 5px;
	color: #FFF;
}

#close_login_error:hover  {background-color: #37d1c9;}

.hide_error  {
	display: none;
}

#version {
	text-align: center;
	color: #51a6cc;
	font-family: 'Montserrat', sans-serif;
	font-size: 12px;
	padding-top: 8px;
	padding-bottom: 12px;
}