@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;700&display=swap');


/* Login Page CSS */
.login-global-container {
	background-image: url(../images/login-hero-blue.jpg);
	height: 100vh;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
	overflow: auto;
}

.login-container {
	border-radius: 10px;
	padding: 24px;
	box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
	max-width: 510px;
	background: var(--white);
	width: 90%;
	position: relative;
}

.gry_back {
	position: absolute;
	background: #f5f5f5;
	top: 0;
	right: 0;
	height: 260px;
	width: 100%;
	border-radius: 10px 10px 0 0;
}

.card-login-form {
	position: relative;
	z-index: 11;
}

.login-form-wrap {
	background: var(--white);
	padding: 25px 25px 0;
	margin-top: 60px;
	padding-top: 75px;
	box-shadow: 0 1px 6px #ededed;
	border-radius: 10px;
}

.logo {
	text-align: center;
	margin-bottom: 2rem;
	position: absolute;
	top: -60px;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 50%;
}

.login-title {
	color: #000;
	font-size: 32px;
	font-weight: 600;
	text-align: center;
	margin-bottom: 25px;
	font-family: 'Roboto Condensed', sans-serif;
}

.form-group {
	position: relative;
	margin-bottom: 1rem;
}
.captcha-input-control {
	letter-spacing: 16px;
	text-align: center;
	font-weight: bold;
}
.captcha-input-control::placeholder {
	letter-spacing: normal;
	color: #aaa;
	font-weight: normal;
}
.log-control {
	background: var(--white);
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 14px 10px 14px 60px;
	font-size: 1rem;
	transition: all 0.3s ease;
	outline: none;
	width: 100%;
}

.log-control:focus {
	border-color: #ea6717;
	background: var(--white);
}

.log-control::placeholder {
	color: #adb5bd;
	font-size: 1rem;
}

.input-icon {
	position: absolute;
	top: 1px;
	left: 1px;
	bottom: 1px;
	background: #f5f5f5;
	padding: 16px;
	border-radius: 7px 0 0 7px;
	border-right: 1px solid #ddd;
}

.btn-login {
	background: var(--theme-blue);
	border: 1px solid #ddd;
	border-radius: 25px;
	color: white;
	font-weight: 600;
	font-size: 16px;
	letter-spacing: 0.5px;
	padding: 0.875rem;
	width: 100%;
	text-transform: uppercase;
	margin-bottom: 1rem;
}

.btn-login:hover {
	background: var(--theme-btnhover);
}

.forgot-password {
	text-align: center;
	margin-bottom: 23px;
	display: inline-block;
	width: 100%;
	color: #ea6717;
	font-size: 14px;
}

.forgot-password a {
	text-decoration: underline;
	font-size: 14px;
	color: #007bff;
}

.attention-notice {
	padding: 10px 0;
	font-size: 12px;
	color: var(--label-color);
	line-height: 18px;
	text-align: justify;
}

/* Footer */
.footer {
	text-align: center;
	color: var(--white);
	margin-top: 30px;
	font-size: 14px;
}

.footer a {
	color: var(--white);
	text-decoration: underline;
	margin: 5px 0;
	display: inline-block;
}

/* Notification Section */
.notification-bell {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	cursor: pointer;
	box-shadow: 0 5px 28px rgb(0 0 0 / 25%);
	border-radius: 100px;
	transition: all 0.3s ease;
}

.notification-in {
	background: var(--white);
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	position: fixed;
	bottom: 100px;
	right: 20px;
	width: 500px;
	z-index: 1000;
	display: none;
	max-width: 90%;
	border: 1px solid #e5e5e5;
}

.notification-info {
	max-height: 260px;
	overflow-y: auto;
}

.training-item {
	padding: 20px;
	border-bottom: 1px solid #e9ecef;
}

.training-icon {
	width: 60px;
	height: 60px;
	flex-shrink: 0;
}

.training-title {
	font-size: 16px;
	margin-bottom: 8px;
}

.hashtag {
	color: #4abaab;
	font-size: 13px;
}

.training-details {
	color: #6c757d;
	font-size: 13px;
	line-height: 1.5;
}

.dropdown-arrow {
	position: absolute;
	bottom: -8px;
	right: 15px;
	width: 0;
	height: 0;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-top: 8px solid var(--white);
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Forgot Password / Username Tabs */
.logon_pnlLogin-pass-tab {
	padding-bottom: 25px;
}

.logon_pnlLogin-pass-tab ul.tabs {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
}

.logon_pnlLogin-pass-tab ul.tabs li {
	display: inline-block;
	padding: 10px 15px;
	cursor: pointer;
	font-size: 16px;
	font-weight: 600;
	text-align: center;
	font-family: 'Roboto Condensed', sans-serif;
	width: 100%;
	background: #efefef;
}

.logon_pnlLogin-pass-tab ul.tabs li.current {
	background: var(--theme-blue);
	color: #fff;
}

.logon_pnlLogin-pass-tab .tab-content {
	display: none;
	background: #fff;
	padding: 15px;
	box-shadow: 0 1px 6px #ededed;
}

.logon_pnlLogin-pass-tab .tab-content.current {
	display: block;
}
/*
.logon_pnlLogin-pass-tab .form-group label {
	display: inline-block;
	width: 100%;	
	font-size: 15px;
	color: #333;
	font-weight: 500;
	margin-bottom:4px;
}
*/
.logon_pnlLogin-pass-tab .capcha {
	height: 54px;
	background: #e5e5e5;
	margin-bottom: 1.5em;
}

.input-lg {
	background: var(--white);
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 14px;
	font-size: 1rem;
	outline: none;
	width: 100%;
	transition: all 0.3s ease;
}

.input-lg::placeholder {
	color: #adb5bd;
	font-family: "Roboto", sans-serif;
}

.logon_pnlLogin-pass-tab .form-group .info {
	font-size: 13px;
	color: var(--theme-blue);
	font-style: italic;
}

button.btn-login.mb-0.btn-back {
	border: 1px solid #333;
	color: #333;
	background: #fff;
	margin-top: 1.5em;
}

/* Multi Juri login page style */
.multi-juri-view .alert {
	font-weight: 500;
}

.multi-juri-view .form-group label {
	margin-bottom: 4px;
	color: var(--text6-col);
	font-weight: bold;
}

/* Responsive */
@media (max-width: 767px) {
	.login-title {
		font-size: 26px;
	}
	.login-global-container {
		height: 100%;
	}
	.footer {
		margin-bottom: 30px;
		display: inline-block;
		width: 100%;
	}
	.login-container {
		width: 95%;
		padding: 10px;
	}
	.login-form-wrap {
		padding: 75px 10px 0;
	}
	.attention-notice {
		font-size: 13px;
		line-height: 18px;
		padding: 15px 10px;
	}
	.training-details {
		font-size: 12px;
	}
}

.fill-btn,
.fill-btn:hover {
	border: 1px solid var(--theme-blue);
	font-size: 12px;
	color: var(--white);
	background-color: var(--theme-blue);
}

.bordered-btn, .bordered-btn:hover {
	border: 1px solid var(--theme-blue);
	font-size: 12px;
	color: var(--theme-blue);
}
.fill-btn:disabled{background:#666;border-color:#666;}

.dntCaptcha {
	background: #eee;
	text-align: center;
	position: relative;
}
.dntCaptcha img {margin:12px 0px !important;}

.reset-captcha-icon {
	display: inline-block;
	width: 24px; /* Size of the icon */
	height: 24px;
	text-decoration: none;
	position: absolute;
	top: 0;
	right: 0;
	padding: 4px;
	background-color: var(--theme-blue);
}

.reset-captcha-icon::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;	
	background-image: url('../images/reset.svg');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}


.has-float-label > label {
	position: absolute;
	cursor: text;
	font-size: 12px;
	opacity: 1;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
	top: -8px;
	left: 12px;
	z-index: 3;
	line-height: 1;
	padding: 0 5px;
	background: var(--white);
}

.has-float-label {
	position: relative;
	margin-bottom: 20px;
}

	.has-float-label > span:not(.invalid-feedback):not(.k-combobox) {
		position: absolute;
		cursor: text;
		font-size: 14px;
		opacity: 1;
		-webkit-transition: all 0.2s;
		transition: all 0.2s;
		top: -8px;
		left: 12px;
		z-index: 3;
		line-height: 1;
		padding: 0 4px;
		background: var(--input-background-color);
	}


