/*//////////////////////////////////////////////////////////////////
[ FONT ]*/
@font-face {
	font-family: Poppins-Regular;
	src: url('../fonts/poppins/Poppins-Regular.ttf');
}

@font-face {
	font-family: Poppins-Medium;
	src: url('../fonts/poppins/Poppins-Medium.ttf');
}

@font-face {
	font-family: Poppins-Bold;
	src: url('../fonts/poppins/Poppins-Bold.ttf');
}

/*//////////////////////////////////////////////////////////////////
[ RESTYLE TAG ]*/
* {
	margin: 0px;
	padding: 0px;
	-webkit-box-sizing: border-box; /* Safari / Chrome 10 */
	-moz-box-sizing: border-box; /* Mozilla Firefox */
	box-sizing: border-box; /* W3C Markup */
}

body, html {
	height: 100%;
	font-family: Poppins-Regular, sans-serif;
}

input {
	outline: none;
	border: none;
}

/*//////////////////////////////////////////////////////////////////
[ login ]*/
.limiter {
	width: 100%;
	margin: 0 auto;
	display: flex;
}

.container-login {
	width: 100%;
	min-height: 100vh;
	display: -webkit-box; /* Safari / Chrome 10 */
	display: -webkit-flex; /* Safari / Chrome 10 */
	display: -moz-box; /* Mozilla Firefox */
	display: -moz-flex; /* Mozilla Firefox */
	display: -o-flex; /* Opera */
	display: flex; /* W3C Markup */
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	padding: 20px;
	background: #fff;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}

.wrap-login {
	width: 440px;
	border-radius: 10px;
	overflow: hidden;
	padding: 44px 55px 33px;
	background: rgba(220, 220, 220, 0.85);
	box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.7);
	z-index: 1;
	position: relative;
}

.img-fluid {
	margin-left: auto;
	margin-right: auto;
	display: block;
}

.top-image {
	width: 80%;
	padding-bottom: 26px;
}

.center-image {
	width: 80%;
	padding-top: 13px;
	padding-bottom: 13px;
}

.bottom-image {
	width: 80%;
	padding-top: 26px;
}

.login-title {
	display: block;
	font-family: Poppins-Medium;
	font-size: 15px;
	font-weight: normal;
	color: #4b4e51;
	line-height: 1.2;
	text-align: center;
	padding-bottom: 26px;
}

.login-title .name {
	font-family: Poppins-Bold;
	font-size: 30px;
	padding-top: 10px;
}

.hidden {
	display: none !important;
}

/*------------------------------------------------------------------
[ Login message ]*/
.container-msg {
	padding-bottom: 40px;
}

.passkey-msg, 
.login-msg {
	position: relative;
	bottom: 50%;
	left: 0;
	width: 100%;
	height: 30%;
	color: #4b4e51;
}

.message-info, .message-success, .message-warn, .message-error {
	border-left-width: 4px;
	border-left-style: solid;
	border-radius: 4px;
	padding: 5px 5px 5px 9px;
}

.message-info {
	border-left-color: rgb(0, 0, 255);
	background: rgba(0, 0, 255, 0.1);
}

.message-success {
	border-left-color: rgb(0, 128, 43);
	background: rgba(0, 128, 43, 0.2);
}

.message-warn {
	border-left-color: rgb(255, 255, 0);
	background: rgba(255, 255, 0, 0.1);
}

.message-error {
	border-left-color: rgb(255, 0, 0);
	background: rgba(255, 0, 0, 0.1);
}

.btn-show-alert {
	color: #ff6600;
	font-size: 1.5em;
	align-items: center;
	position: absolute;
	height: 100%;
	top: 0;
	right: 0;
	padding-right: 5px;
	cursor: pointer;
	pointer-events: none;
	display: none;
}

.enter-value .btn-show-alert {
	display: -webkit-box; /* Safari / Chrome 10 */
	display: -webkit-flex; /* Safari / Chrome 10 */
	display: -moz-box; /* Mozilla Firefox */
	display: flex; /* W3C Markup */
}

.enter-value .btn-show-pass {
	display: none !important;
}

/*------------------------------------------------------------------
[ Form ]*/
.login-form {
	width: 100%;
}

/*------------------------------------------------------------------
[ Input ]*/
.wrap-input {
	width: 100%;
	position: relative;
	border-bottom: 2px solid #4b4e51;
	margin-bottom: 37px;
}

.input {
	font-family: Poppins-Regular;
	font-size: 15px;
	color: #212529;
	line-height: 1.2;
	display: block;
	width: 100%;
	height: 45px;
	background: transparent;
	padding: 0 5px;
}

.wrap-input.input-icon .input {
	padding: 0 5px 0 40px;
}

.wrap-input.input-icon::before {
	font-family: 'Material-Design-Iconic-Font';
	display: flex;
	position: absolute;
	top: 10px;
	left: 5px;
	width: 30px;
	height: 30px;
	justify-content: center;
	align-items: center;
	/*border-radius: 50%;*/
	/*background-color: #565656;*/
	font-size: 20px;
	color: #565656;
}

.wrap-input.input-icon.username::before {
	content: '\f207';
}

.wrap-input.input-icon.password::before {
	content: '\f183';
}

.wrap-input.input-icon.totp::before {
	content: '\f336';
}

.focus-input {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	pointer-events: none;
}

.focus-input::before {
	content: "";
	display: block;
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	-webkit-transition: all 0.4s; /* Safari / Chrome 10 */
	-o-transition: all 0.4s; /* Opera */
	-moz-transition: all 0.4s; /* Mozilla Firefox */
	transition: all 0.4s; /* W3C Markup */
	background: #80ff80;
	background: -webkit-linear-gradient(left, #80ff80, #00802b); /* Safari / Chrome 10 */
	background: -o-linear-gradient(left, #80ff80, #00802b); /* Opera */
	background: -moz-linear-gradient(left, #80ff80, #00802b); /* Mozilla Firefox */
	background: linear-gradient(left, #80ff80, #00802b); /* W3C Markup */
}

.focus-input::after {
	font-family: Poppins-Regular;
	font-size: 15px;
	color: #4b4e51;
	line-height: 1.2;
	content: attr(data-placeholder);
	display: block;
	width: 100%;
	position: absolute;
	top: 16px;
	left: 0px;
	padding-left: 5px;
	-webkit-transition: all 0.4s; /* Safari / Chrome 10 */
	-o-transition: all 0.4s; /* Opera */
	-moz-transition: all 0.4s; /* Mozilla Firefox */
	transition: all 0.4s; /* W3C Markup */
}

.input-icon .focus-input::after {
	left: 35px;
}

.input:focus+.focus-input::after {
	top: -15px;
}

.input-icon .input:focus+.focus-input::after {
	left: 0;
}

.input:focus+.focus-input::before {
	width: 100%;
}

.input:not([value=""])+.focus-input::after, 
.has-val.input+.focus-input::after {
	top: -15px;
}

.input-icon .input:not([value=""])+.focus-input::after, 
.input-icon .has-val.input+.focus-input::after {
	left: 0;
}

.input:not([value=""])+.focus-input::before,
.has-val.input+.focus-input::before {
	width: 100%;
}

label:focus-visible, 
div:focus-visible {
	border: none;
	outline: 2px solid #00802b;
}

/*------------------------------------------------------------------
[ Checkbox ]*/
.checkbox {
	font-size: 15px;
	color: #4b4e51;
}

.checkbox label:after {
	content: '';
	display: table;
	clear: both;
}

.checkbox .cr {
	position: relative;
	border: 1px solid #4b4e51;
	border-radius: .25em;
	width: 1.3em;
	height: 1.3em;
	float: left;
	margin-right: .5em;
}

.cr {
	border-radius: 50%;
}

.checkbox .cr .cr-icon {
	position: absolute;
	line-height: 0;
	top: 50%;
	left: 20%;
}

.cr .cr-icon {
	margin-left: 0.04em;
}

.checkbox label input[type="checkbox"] {
	display: none;
}

.checkbox label input[type="checkbox"]+.cr>.cr-icon {
	transform: scale(3) rotateZ(-20deg);
	opacity: 0;
	transition: all .3s ease-in;
}

.checkbox label input[type="checkbox"]:checked+.cr>.cr-icon {
	transform: scale(1) rotateZ(0deg);
	opacity: 1;
}

.checkbox label input[type="checkbox"]:disabled+.cr {
	opacity: .5;
}

/*------------------------------------------------------------------
[ Button show password ]*/
.btn-show-pass {
	font-size: 1.5em;
	color: #4b4e51;
	display: -webkit-box; /* Safari / Chrome 10 */
	display: -webkit-flex; /* Safari / Chrome 10 */
	display: -moz-box; /* Mozilla Firefox */
	display: flex; /* W3C Markup */
	align-items: center;
	position: absolute;
	height: 100%;
	top: 0;
	right: 0;
	padding-right: 5px;
	cursor: pointer;
	-webkit-transition: all 0.4s; /* Safari / Chrome 10 */
	-o-transition: all 0.4s; /* Opera */
	-moz-transition: all 0.4s; /* Mozilla Firefox */
	transition: all 0.4s; /* W3C Markup */
}

.btn-show-pass:hover {
	color: #00802b;
}

.btn-show-pass i.zmdi-eye-off {
	color: #00802b;
}

/*------------------------------------------------------------------
[ Button login]*/
.container-login-form-btn {
	display: -webkit-box; /* Safari / Chrome 10 */
	display: -webkit-flex; /* Safari / Chrome 10 */
	display: -moz-box; /* Mozilla Firefox */
	display: flex; /* W3C Markup */
	flex-wrap: wrap;
	justify-content: center;
	padding-top: 13px;
	padding-bottom: 5px;
}

.wrap-login-form-btn {
	width: 100%;
	display: block;
	position: relative;
	z-index: 1;
	border-radius: 25px;
	overflow: hidden;
	margin: 0 auto;
}

.wrap-login-form-btn .login-form-bgbtn {
	position: absolute;
	z-index: -1;
	width: 300%;
	height: 100%;
	background: #80ff80;
	background: -webkit-linear-gradient(right, #80ff80, #00802b, #80ff80, #00802b);
	background: -o-linear-gradient(right, #80ff80, #00802b, #80ff80, #00802b);
	background: -moz-linear-gradient(right, #80ff80, #00802b, #80ff80, #00802b);
	background: linear-gradient(right, #80ff80, #00802b, #80ff80, #00802b);
	top: 0;
	left: -100%;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	-moz-transition: all 0.4s;
	transition: all 0.4s;
	transform: translateZ(0);
}

.wrap-login-form-btn.disabled .login-form-bgbtn {
	background: #aaa;
	background: -webkit-linear-gradient(right, #aaa, #555, #aaa, #555);
	background: -o-linear-gradient(right, #aaa, #555, #aaa, #555);
	background: -moz-linear-gradient(right, #aaa, #555, #aaa, #555);
	background: linear-gradient(right, #aaa, #555, #aaa, #555);
}

.login-form-btn {
	font-family: Poppins-Medium;
	font-size: 15px;
	color: #fff;
	line-height: 1.2;
	text-transform: uppercase;
	justify-content: center;
	align-items: center;
	padding: 0 20px;
	width: 100%;
	height: 50px;
}

.wrap-login-form-btn:hover .login-form-bgbtn {
	left: 0;
}

.wrap-login-form-btn.disabled:hover .login-form-bgbtn {
	left: -100%;
}

button {
	outline: none !important;
	border: none;
	background: transparent;
	cursor: pointer;
}

.wrap-login-form-btn.disabled button {
	cursor: not-allowed;
}

a {
	color: #00802b;
	text-decoration: none;
	-webkit-transition: all 0.2s; /* Safari / Chrome 10 */
	-o-transition: all 0.2s; /* Opera */
	-moz-transition: all 0.2s; /* Mozilla Firefox */
	transition: all 0.2s; /* W3C Markup  */
}

a:hover {
	color: #40c056;
	text-decoration: none;
}

.branding-container {
	position: relative;
	top: 29px;
	right: -46px;
}

.branding {
	max-height: 35px;
	display: flex;
	justify-content: end;
	column-gap: 10px;
}

.branding-text {
	font-size: 0.7em;
	align-content: end;
}

.branding-image {
	max-width: 50%;
}

.branding-image .img-fluid {
	margin-top: auto;
	margin-bottom: auto;
	margin-left: 0;
	margin-right: 0;
	max-height: 100%;
	display: inline;
}

.copyright-container {
	position: absolute;
	right: 0;
	bottom: 0;
	max-height: 25px;
}

.copyright {
	display: flex;
	justify-content: end;
	column-gap: 5px;
}

.copyright-text {
	font-size: 0.7em;
	align-content: end;
}

.copyright-image {
	max-height: 20px;
	width: auto;
}

.copyright-image .img-fluid {
	margin-top: auto;
	margin-bottom: auto;
	margin-left: 0;
	margin-right: 0;
	max-height: 100%;
	width: auto;
}

.wrap-input.totp,
.MFALink {
	margin-bottom: 11px;
	display: block;
}

.MFALink.notReady,
.MFALink.notReady:hover {
	color: #999;
}

/*------------------------------------------------------------------
[ Responsive ]*/
@media ( max-width : 470px) {
	.wrap-login {
		padding: 22px 15px 33px 15px;
	}
	.img-fluid {
		width: 60%;
	}
	.branding-image .img-fluid {
		width: auto;
	}
	.branding-container {
		right: 0px;
	}
}

/* HCL popup */
.popup {
	text-align: right;
	font-size: 0.8em;
}

.popup .popuptext {
	position: absolute;
	right: 0;
	left: 0;
	bottom: 0;
	z-index: 1;
	text-align: left;
	border-radius: 0;
	border-left-width: 10px;
	padding: 10px 5px 10px 10px;
}

.popup .popuplink {
	color: #4b4e51;
}

.popup .popuplink,
.popup .popuptext {
	cursor: pointer;
	visibility: hidden;
	opacity: 0;
	transition: opacity 250ms ease-in, visibility 0ms ease-in 250ms;
}

.popup .popuplink.show,
.popup .popuptext.show {
	visibility: visible;
	opacity: 1;
}