.login-header-logo{
	font-size: 27px;
	font-weight: 700;
	color: #fff; 
	letter-spacing: 2px;
	display: block;
}
.password-input{
	padding-right: 40px;
}
.password-addon{
	position: absolute;
	top: 0px;
	right: 0px;
}

.auth-bg-cover {
    background: linear-gradient(14deg, #eceffa 56%, #5a9cd6);
}
.auth-one-bg {
    background-image: url(../../images/information-system-bg.jpg);
    background-position: center;
    background-size: cover
}
.auth-one-bg .bg-overlay {
    background: linear-gradient(to right, #735b95, #aa3e9e);
    opacity: .8
}
.carousel-inner-text-login{
	color: rgba(255, 255, 255, 0.8);
}

/**	START NEW DESIGN LOGIN PAGE **/
.container-login{
	width: 100%;  
	min-height: 100vh;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
.container-login > .wrap-login{
	width: 100%;
	background-color: #f3f3f9;
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	flex-direction: row-reverse;
}
.container-login .form-login-section{
	width: 100%;
	min-height: auto;
	display: block;
	background-color: #fff;
	margin: 20px 25px;
	padding: 30px 20px 20px;
	border-radius: 5px;
	border: 1px solid #e9e9e9;
	box-shadow: 0px 3px 10px rgba(0,0,0,0.2);
}
.container-login .form-login-section > .form-login-logo{
	width: 390px;
	margin: 0px auto;
}
.container-login .authbg-login-section{
	display: none;
	background: linear-gradient(45deg, #eee 10%, #5a9cd6);
}
.container-login .authbg-login-section > .bg-overlay {
	width: calc(100% - 450px);
	background-image: url(../../images/login-pattern.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 75%;
	background-color: transparent;
	opacity: 0.5;
}
.container-login .authbg-login-section > .bg-header-logo{
	margin: 30px auto 0px;
	width: 80%;
	max-height: 80px;
}
@media(min-width: 600px) {
	.container-login .form-login-section > .form-login-logo{
		width: 500px;
		margin: 0px;
	}
}
@media(min-width: 768px) {
	.container-login .form-login-section{
		width: 450px;
		min-height: 100vh;
		background-color: #f7f7f7;
		margin: 0px;
		padding: 80px 35px 35px;
		border-radius: 0px;
		border: none;
		box-shadow: none;
	}
	.container-login .form-login-section > .form-login-logo{
		display: none;
	}
	.container-login .authbg-login-section{
		width: calc(100% - 450px);
		display: block;
	}
	.container-login .authbg-login-section > .bg-overlay {
		background-size: 100%;
		background-position: center;
	}
}
@media(min-width: 1024px) {
	.container-login .authbg-login-section > .bg-overlay {
		background-size: 90%;
		background-position: center;
	}
	.container-login .authbg-login-section > .bg-header-logo{
		width: 90%;
	}
}
@media(min-width: 1200px) {
	.container-login .authbg-login-section > .bg-overlay {
		background-size: 70%;
		background-position: center;
	}
	.container-login .authbg-login-section > .bg-header-logo{
		width: 623px;
	}
}
/**	END NEW DESIGN LOGIN PAGE **/

/**	START FORM VALIDATION **/
label.error {
  font-size: 11px;
  font-style: italic;
  color: #ee0101;
  margin: 5px 0px 2px;
}
/**	END FORM VALIDATION **/

/**	START NOTIFY BOOTSTRAP **/
[data-notify="container"].alert-success{
	background-color: #00a65a;
	border-color: #00a65a;
	color: #fff;
}
[data-notify="container"].alert-error{
	background-color: #dd4b39;
	border-color: #dd4b39;
	color: #fff;
}
[data-notify="container"] .notify-header{
	font-size: 16px;
	font-weight: 700;
	padding-right: 20px;
	margin: 0px;
}
[data-notify="container"] .notify-icon{
	margin-right: 5px;
}
[data-notify="container"] .notify-separator{
	clear: both;
	margin-top: 5px;
	margin-bottom: 10px;
	border-top: 1px double #f3b1b1;
	opacity: 1;
}
[data-notify="container"] .progress{
	background-color: #f5f5f5;
	height: 3px;
	margin: 15px 0px 5px;
	-webkit-box-shadow: none;
	   -moz-box-shadow: none;
			box-shadow: none;
	-webkit-border-radius: 0px;
	   -moz-border-radius: 0px;
			border-radius: 0px;
}
[data-notify="container"] .progress .progress-bar{
	-webkit-box-shadow: none;
	   -moz-box-shadow: none;
			box-shadow: none;
}
.progress-bar-success{
	background-color: #00a65a;
}
.progress-bar-error{
	background-color: #dd4b39;
}

/* Bouncing entrances  */
@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

/* Bouncing exits  */
@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
.animate__bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}
/**	END NOTIFY BOOTSTRAP **/
