body {
	color: #fff !important;
	font-family: "Source Sans Pro", sans-serif !important;
	font-size: 14px;
	font-weight: 400;
	background-color: rgb(55, 74, 94);
}

#login-container {
	position: relative;
	display: flex;
	justify-content: center;
	width: 95%;
	margin: 8%;
	margin-left: -45px;
}

.loginLinkcss {
	color: white;
	text-decoration: none;
	cursor: pointer;
	float: right;
	margin-right: -10px;
}

	.loginLinkcss:hover {
		color: white !important;
		text-decoration: none;
	}

.remember-me {
	color: white;
	text-decoration: none;
	float: left;
	padding: 0px 4px 0px 4px;
}

	.remember-me:hover {
		color: white;
		text-decoration: none;
	}

.forgot-password {
	color: white;
	text-decoration: none;
	float: right;
	margin-right: -10px;
}

#lnkResetPassword:hover {
	font-weight: bold;
}


#chkRememberMe {
	float: left;
}

.modal-overlay {
	opacity: 0;
	filter: alpha(opacity=0);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3) !important;
}

#divLoginForm {
	margin: 6px;
	background-color: white;
	height: 110px;
	border: 1px solid white;
	border-radius: 13px;
	position: relative;
}

#divcreateLoginForm {
	position: relative;
}

#lnkResetPassword {
	padding-left: 8px;
	color: white;
	font-weight: bold;
	text-decoration: none;
}

	#lnkResetPassword:hover {
		color: white;
		font-weight: bold;
		text-decoration: none;
	}

#txtUserName, #txtUserPassword {
	height: 24px;
	width: 88%;
	border: none;
	background-color: white;
	color: black;
	padding: 0px;
	box-shadow: none;
	padding-left: 5px;
}

	#txtUserName:focus, #txtUserPassword:focus {
		background-color: lightgrey !important;
	}

.lblUsername {
	color: #999;
	position: absolute;
	pointer-events: none;
	top: 24px;
	transition: 0.2s ease all;
	-moz-transition: 0.2s ease all;
	-webkit-transition: 0.2s ease all;
}

#txtUserName:focus ~ .lblUsername,
#txtUserName:valid ~ .lblUsername {
	top: 2px;
	color: #999;
	background-color: transparent;
}

.lblPassword {
	color: #999;
	position: absolute;
	pointer-events: none;
	top: 10px;
	transition: 0.2s ease all;
	-moz-transition: 0.2s ease all;
	-webkit-transition: 0.2s ease all;
}

#txtUserPassword:focus ~ .lblPassword,
#txtUserPassword:valid ~ .lblPassword {
	top: 30px;
	color: #999;
	background-color: transparent;
}

#txtNewPassword, #txtConfirmPassword {
	height: 24px;
	border: none;
	background-color: rgb(55, 74, 94);
	color: black;
	padding: 0px;
	box-shadow: none;
	padding-left: 5px;
}

	#txtNewPassword:focus, #txtConfirmPassword:focus {
		background-color: white !important;
	}

.lblNewPassword {
	color: white;
	position: absolute;
	pointer-events: none;
	top: 24px;
	transition: 0.2s ease all;
	-moz-transition: 0.2s ease all;
	-webkit-transition: 0.2s ease all;
}

#txtNewPassword:focus ~ .lblNewPassword,
#txtNewPassword:valid ~ .lblNewPassword {
	top: 2px;
	color: white;
	background-color: transparent;
}

.lblConfirmPassword {
	color: white;
	position: absolute;
	pointer-events: none;
	top: 10px;
	transition: 0.2s ease all;
	-moz-transition: 0.2s ease all;
	-webkit-transition: 0.2s ease all;
}

#txtConfirmPassword:focus ~ .lblConfirmPassword,
#txtConfirmPassword:valid ~ .lblConfirmPassword {
	top: 30px;
	color: white;
	background-color: transparent;
}

#divBrowserCompatibility {
	display: none;
	width: 350px;
	position: absolute;
	top: -60px;
	margin: auto;
	z-index: 10;
	padding: 10px;
	background-color: white;
	border-radius: 12px;
	color: rgb(102, 102, 102);
	left: 45%;
}

#divWarningBrowserNotSupportive {
	display: none;
	font-weight: 500;
	line-height: normal;
	margin-bottom: 10px;
	float: left;
}

.overlay {
	display: none;
	width: 100%;
	height: 100%;
	position: absolute;
	background-color: #DACFCF;
	top: 0px;
	z-index: 99999;
	opacity: 0;
	cursor: wait;
}

.overlay-1 {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9;
	background: #ffffff;
	background-color: rgba(0,0,0,0.25);
}

.no-padding {
	padding: 0px !important;
}

#txtAppTitle, #txtResetPasswd, #txtForgotPasswordHeader, #txtCreateLoginHeader, #txtCreateLoginFormHeader {
	font-size: 32px;
}

#cntLoginForm, #divResetPasswdForm {
	padding-right: 18%;
	padding-left: 20px;
}

#lblErrorMessage {
	display: none;
	position: absolute;
	left: 6px;
	bottom: 25px;
	width: 100%;
	text-align: center !important;
	background-color: white;
	color: #E3021F;
	text-align: left;
	float: left;
	padding: 5px;
	border-radius: 11px;
}

.pin-input {
	display: inline-block;
	height: 50px;
	width: 50px;
	text-align: center;
	font-size: 25px;
	margin-right: 10px;
}

#divPasswordStrength i {
	width: 30px;
	text-align: center;
}

#divPasswordStrength .invalid {
	color: #d00527;
}

#divPasswordStrength .valid {
	color: #05d047;
}

#btnPWResetEmail {
	width: 90px;
	background-color: #d00527;
	color: white;
	border: 1px solid #d00527;
	border-radius: 11px;
	float: left;
}

	#btnPWResetEmail:disabled {
		background-color: gray;
		border-color: gray;
		cursor: not-allowed;
	}

#lnkBackToLogin {
	color: white;
	cursor: pointer;
}

	#lnkBackToLogin.float-right {
		float: right;
		margin: 0% 0% 0% 19%;
		position: absolute;
	}

@media (min-width:1200px) {
	#lnkBackToLogin {
		margin-right: 15%;
	}
}

@media (min-width:1025px) and (max-width:1440px) {
	#login-container {
		width: 85%;
	}

	#cntLoginForm, #divResetPasswdForm {
		padding-right: 10%;
	}
}

@media (min-width:991px) and (max-width:1024px) {
	#login-container {
		width: 100%;
	}

	#cntLoginForm, #divResetPasswdForm {
		padding-right: 13%;
	}

	#divBrowserCompatibility {
		left: 40%;
	}
}

@media (max-width:990px) {
	#login-container {
		margin: 8% auto;
		width: 95%;
		margin-left: -45px
	}

	#cntLoginForm, #divResetPasswdForm {
		padding-right: 0px !important;
	}

	#txtAppTitle, #txtResetPasswd, #txtForgotPasswordHeader, #txtCreateLoginHeader, #txtCreateLoginFormHeader {
		font-size: 23px;
	}

	#divBrowserCompatibility {
		left: 36%;
	}

	.pin-input {
		height: 36px;
		width: 36px;
		font-size: 18px;
	}
}

@media (max-width:767px) {
	#login-container {
		width: 100%;
		margin: unset !important;
	}

	#cntLoginForm, #divResetPasswdForm {
		width: 60% !important;
		padding: 25px 0px 0px 0px !important;
		margin: auto !important;
		float: none;
	}

	#txtAppTitle, #txtResetPasswd {
		float: none !important;
	}

	#divBrowserCompatibility {
		top: 15px !important;
		left: 0%;
		right: 0%;
	}

	#bpgLogo {
		float: left !important;
	}

	#cntTitle {
		border: none !important;
	}

	#divTitle {
		text-align: center !important;
		border-bottom: 2px solid white !important;
	}

	#alertMessage {
		position: initial;
		margin-left: 5px;
	}
}

@media (max-width:550px) {
	#cntLoginForm, #divResetPasswdForm {
		width: 90% !important;
		float: left;
	}
}
