body {
	background-color: #07111f;
	color: #0f172a;
	font-family: 'Signika', sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	line-height: 22px;
	font-size: 14px;
	width: 100%;
}

:root {
	--auth-navy: #07111f;
	--auth-ink: #101827;
	--auth-muted: #64748b;
	--auth-blue: #ffbd2e;
	--auth-cyan: #ff685c;
	--auth-emerald: #ffbd2e;
	--auth-amber: #ffbd2e;
	--auth-surface: rgba(255, 255, 255, 0.9);
	--auth-surface-strong: rgba(255, 255, 255, 0.96);
	--auth-border: rgba(148, 163, 184, 0.24);
	--auth-shadow: 0 34px 90px rgba(2, 6, 23, 0.34);
	--auth-radius: 18px;
}

.auth-main{
	min-height: 100vh;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 34px 14px;
	position: relative;
	overflow: hidden;
}

.auth-main:before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		linear-gradient(115deg, rgba(7, 17, 31, 0.94), rgba(9, 22, 38, 0.74) 52%, rgba(7, 17, 31, 0.9)),
		linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 28%, rgba(8, 145, 178, 0.1));
	z-index: 0;
}

.auth-main:after {
	content: '';
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
		linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
	background-size: 42px 42px;
	mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.48), transparent 80%);
	-webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.48), transparent 80%);
	pointer-events: none;
	z-index: 0;
}

@keyframes authGradientMove {
	0% { background-position: 0% 0%, 100% 100%, 0% 50%; }
	50% { background-position: 80% 20%, 20% 80%, 100% 50%; }
	100% { background-position: 0% 0%, 100% 100%, 0% 50%; }
}

@keyframes authGlowFloat {
	0%, 100% { transform: translate3d(0, 0, 0); }
	50% { transform: translate3d(0, -10px, 0); }
}

@keyframes authHeaderRise {
	0% { opacity: 0; transform: translateY(16px); }
	100% { opacity: 1; transform: translateY(0); }
}

@keyframes authKickerGlow {
	0%, 100% { box-shadow: 0 12px 28px rgba(8, 145, 178, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.86); }
	50% { box-shadow: 0 16px 34px rgba(8, 145, 178, 0.2), 0 0 0 6px rgba(8, 145, 178, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.9); }
}

@keyframes authTitleSheen {
	0%, 100% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
}

@keyframes authUnderlinePulse {
	0%, 100% { width: 86px; opacity: 0.92; }
	50% { width: 118px; opacity: 1; }
}

@keyframes authButtonBreath {
	0%, 100% { background-position: 0% 50%; box-shadow: 0 18px 42px rgba(29, 78, 216, 0.24), 0 0 0 0 rgba(8, 145, 178, 0); }
	50% { background-position: 80% 50%; box-shadow: 0 22px 48px rgba(8, 145, 178, 0.28), 0 0 0 6px rgba(8, 145, 178, 0.06); }
}

.auth-main .container {
	position: relative;
	z-index: 1;
	max-width: 1060px;
}

.slideIn .col-lg-4,
.slideIn .col-md-4,
.slideIn .col-lg-6,
.slideIn .col-md-6 {
	margin-left: 0;
	margin-right: 0;
}

.slideIn .col-lg-4,
.slideIn .col-md-4 {
	width: 40%;
}

.slideIn .col-lg-6,
.slideIn .col-md-6 {
	width: 60%;
}

input.form-control {
	width: 100%;
	height: 42px;
	-webkit-border-radius: 999px;
	border-radius: 999px;
}

.form-control {
	color: var(--auth-ink);
	background-color: #ffffff;
	border: 1px solid rgba(148, 163, 184, 0.34);
	-webkit-border-radius: 999px;
	border-radius: 999px;
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
	transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.form-control:focus {
	border-color: rgba(8, 145, 178, 0.5);
	box-shadow: 0 0 0 5px rgba(8, 145, 178, 0.09), 0 18px 38px rgba(8, 145, 178, 0.13);
	background-color: #ffffff;
	outline: none;
}

a {
	color: var(--auth-cyan);
	transition: color 0.2s ease, transform 0.2s ease;
}

a:hover, a:focus {
	color: #0e7490;
    text-decoration: none;
}

.image-area a {
	color: rgba(255, 255, 255, 0.92);
}

.image-area a:hover,
.image-area a:focus {
	color: #ffffff;
}

.no-padding {
    padding: 0;
}

.fitxt-center {
	z-index:1;
	text-align: center;
}

.img-hol-p {
	position: absolute;
	top: 34px;
	left: 34px;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	width: 74px;
	height: 74px;
}

.img-hol-p:before {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	width: 100%;
	height: 100%;
	border-radius: 26px;
	transform: translate(-50%, -50%) rotate(45deg);
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(8, 145, 178, 0.08));
	border: 1px solid rgba(255, 255, 255, 0.32);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.38), 0 20px 48px rgba(2, 6, 23, 0.25);
	backdrop-filter: blur(16px) saturate(160%);
	-webkit-backdrop-filter: blur(16px) saturate(160%);
	transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.34s ease, border-color 0.34s ease;
}

.img-hol-p:hover:before {
	transform: translate(-50%, -50%) rotate(45deg) scale(1.08);
	border-color: rgba(255, 255, 255, 0.55);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.48), 0 26px 58px rgba(8, 145, 178, 0.28);
}

/* image area */
.image-area {
	background: url('../image/ethiopian-school-sidebox.png');
	background-position: center;
	background-size: cover;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	height: 100%;
	min-height: 600px;
	border-radius: var(--auth-radius) 0 0 var(--auth-radius);
	z-index: 1;
	position: relative;
	overflow: hidden;
	box-shadow: none;
}

.image-area:before {
	position: absolute;
	content: '';
	z-index: 0;
	border-radius: inherit;
	height: 100%;
	width: 100%;
	background:
		linear-gradient(145deg, rgba(7, 17, 31, 0.88), rgba(8, 145, 178, 0.62)),
		linear-gradient(0deg, rgba(2, 6, 23, 0.28), transparent);
	opacity: .94;
	top: 0;
	left: 0;
}

.image-area:after {
	content: '';
	position: absolute;
	left: 24px;
	right: 24px;
	bottom: 24px;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.64), transparent);
	opacity: 0.85;
	z-index: 2;
}

@keyframes authPanelGradient {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

.image-area .content{
	min-height: 100%;
	padding: 72px 30px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 1;
}

.image-area .image-hader {
	padding-bottom: 24px;
	margin-top: 48px;
}

.image-area .image-hader h2{
	color: #fff;
	text-transform: uppercase;
	position: relative;
	letter-spacing: 0.06em;
	font-weight: 700;
	font-size: 24px;
	margin-bottom: 0;
	text-shadow: 0 10px 30px rgba(2, 6, 23, 0.35);
}

.image-area .image-hader h2:before {
	content: '';
	background: #fff;
	width: 85px;
	height: 2px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -6px;
	border-radius: 999px;
	opacity: 0.82;
}

.content .address p{
	color: #fff;
	font-size: 15px;
	font-weight: normal;
	padding-bottom: 10px;
	opacity: 0.86;
	line-height: 1.7;
}

.f-social-links a span {
    font-size: 15px;
    color: #fff;
    width: 46px;
    height: 46px;
    text-align: center;
    line-height: 44px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin: 0 5px;
	border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.34);
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08));
	box-shadow: 0 16px 32px rgba(2, 6, 23, 0.2);
	backdrop-filter: blur(12px) saturate(150%);
	-webkit-backdrop-filter: blur(12px) saturate(150%);
	transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.34s ease, border-color 0.34s ease, color 0.34s ease;
}

.f-social-links a span:after {
    content: '';
    position: absolute;
    inset: 0;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.34s ease;
    transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.34s ease;
	background: rgba(15, 23, 42, 0.72);
	opacity: 0;
    z-index: -1;
}

.f-social-links a span:hover:after {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
	opacity: 1;
}

.f-social-links a span:hover {
	transform: translateY(-5px) scale(1.08) rotate(-2deg);
	border-color: rgba(255, 255, 255, 0.72);
	color: #fff;
}

.f-social-links a:nth-child(1) span:after {
	background: linear-gradient(135deg, #1877f2, #5aa7ff);
}

.f-social-links a:nth-child(1) span:hover {
	box-shadow: 0 22px 44px rgba(24, 119, 242, 0.42), 0 0 0 7px rgba(24, 119, 242, 0.1);
}

.f-social-links a:nth-child(2) span:after {
	background: linear-gradient(135deg, #1d9bf0, #67e8f9);
}

.f-social-links a:nth-child(2) span:hover {
	box-shadow: 0 22px 44px rgba(29, 155, 240, 0.42), 0 0 0 7px rgba(103, 232, 249, 0.12);
}

.f-social-links a:nth-child(3) span:after {
	background: linear-gradient(135deg, #0a66c2, #22d3ee);
}

.f-social-links a:nth-child(3) span:hover {
	box-shadow: 0 22px 44px rgba(10, 102, 194, 0.42), 0 0 0 7px rgba(34, 211, 238, 0.12);
}

.f-social-links a:nth-child(4) span:after {
	background: linear-gradient(135deg, #ff0033, #ff7a18);
}

.f-social-links a:nth-child(4) span:hover {
	box-shadow: 0 22px 44px rgba(255, 0, 51, 0.4), 0 0 0 7px rgba(255, 122, 24, 0.12);
}

/* sign area */
.sign-area {
    z-index: 1;
	background:
		radial-gradient(circle at 18% 8%, rgba(8, 145, 178, 0.1), transparent 34%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 250, 252, 0.96));
    position: relative;
	color: var(--auth-ink);
    width: 100%;
	min-height: 600px;
	-webkit-border-radius: 0 var(--auth-radius) var(--auth-radius) 0;
	border-radius: 0 var(--auth-radius) var(--auth-radius) 0;
	padding: 48px 56px;
	margin-top: 0;
	box-shadow: none;
	border: 0;
	transform: translateZ(0);
	transition: background-color 0.25s ease;
}

.sign-area:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--auth-blue), var(--auth-cyan), var(--auth-emerald));
}

.sign-area:hover {
	transform: translateZ(0);
	box-shadow: none;
}

.sign-area::before {
	display: none;
}

.sign-area .sign-hader {
	text-align: left;
	padding-top: 0;
	padding-bottom: 28px;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 0;
	animation: authHeaderRise 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.sign-area .sign-kicker {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	border-radius: 999px;
	padding: 8px 15px;
	background: linear-gradient(135deg, rgba(8, 145, 178, 0.12), rgba(5, 150, 105, 0.08));
	border: 1px solid rgba(8, 145, 178, 0.22);
	color: #0e7490;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.14em;
	line-height: 1;
	text-transform: uppercase;
	box-shadow: 0 12px 28px rgba(8, 145, 178, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.86);
	animation: authKickerGlow 3.6s ease-in-out infinite;
}

.sign-area .sign-hader h2 {
	margin: 0;
	font-weight: 900;
	letter-spacing: -0.035em;
	color: transparent;
	background: linear-gradient(110deg, #0f172a, #0e7490 48%, #059669 76%, #0f172a);
	background-size: 220% 100%;
	-webkit-background-clip: text;
	background-clip: text;
	font-family: 'Signika', sans-serif;
	font-size: 34px;
	line-height: 1.12;
	max-width: 520px;
	position: relative;
	padding-bottom: 16px;
	text-shadow: 0 18px 42px rgba(8, 145, 178, 0.1);
	animation: authTitleSheen 5.5s ease-in-out infinite;
}

.sign-area .sign-hader h2:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 86px;
	height: 4px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--auth-blue), var(--auth-cyan), var(--auth-emerald));
	box-shadow: 0 10px 24px rgba(8, 145, 178, 0.18);
	animation: authUnderlinePulse 2.8s ease-in-out infinite;
}

.image-area .img-hol-p img {
	position: relative;
	z-index: 1;
	width: 70px;
	height: 70px;
	object-fit: contain;
	border-radius: 0;
	background: transparent;
	padding: 0;
	border: 0;
	box-shadow: none;
	filter: drop-shadow(0 16px 26px rgba(2, 6, 23, 0.18));
	transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), filter 0.34s ease;
}

.image-area .img-hol-p img {
	width: 58px;
	height: 58px;
	filter: drop-shadow(0 18px 30px rgba(2, 6, 23, 0.32));
}

.image-area .img-hol-p img:hover {
	transform: translateY(-4px) scale(1.07);
	filter: drop-shadow(0 24px 36px rgba(8, 145, 178, 0.3));
}

.sign-area form .form-group {
	width: 100%;
	margin-bottom: 18px;
	position: relative;
}

.sign-area form .form-group + .form-group {
	margin-top: 16px;
}

.sign-area form .login-field {
	clear: both;
	position: relative;
	top: 0;
}

.sign-area form .username-field {
	margin-bottom: 18px;
}

.sign-area form .password-field {
	margin-top: 0;
}

.form-control::-webkit-input-placeholder {
	color: rgba(15, 23, 42, 0.62);
}

.form-control::-moz-placeholder {
	color: rgba(15, 23, 42, 0.62);
	opacity: 1;
}

.form-control:-ms-input-placeholder {
	color: rgba(15, 23, 42, 0.62);
}

/* btn round */
.btn-round {
	background: rgba(15, 23, 42, 0.04);
	background-size: 180% 180%;
	border: 1px solid rgba(15, 23, 42, 0.22);
	margin-top: 42px;
	height: 42px;
	-webkit-border-radius: 999px;
	-moz-border-radius: 999px;
	border-radius: 999px;
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
	color: #0f172a;
	position: relative;
	overflow: hidden;
	transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.34s ease, background-position 0.34s ease;
	animation: authButtonBreath 4s ease-in-out infinite;
}

.btn-round:before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
	transform: translateX(-120%);
	transition: transform 0.55s ease;
}

.btn-round:hover:before {
	transform: translateX(120%);
}

.btn-round:hover,
.btn-round:focus,
.btn-round:active {
	background: linear-gradient(135deg, #1d4ed8, #0891b2 55%, #059669);
	color: #fff;
	border-color: transparent;
    outline: none !important;

}

.btn-round:hover {
	transform: translateY(-3px);
	box-shadow: 0 18px 38px rgba(8, 145, 178, 0.18);
}

.forgot-text {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 6px 2px 4px;
	color: var(--auth-muted);
	gap: 16px;
}

.forgot-text a,
.checkbox-replace .i-checks {
	transition: color 0.25s ease, transform 0.25s ease;
}

.forgot-text a:hover,
.checkbox-replace .i-checks:hover {
	color: var(--auth-cyan);
	transform: translateY(-1px);
}

.sign-footer p {
	color: rgba(15, 23, 42, 0.58);
	text-align: center;
	margin-top: 46px !important;
	font-size: 13px;
}

.forgot-header {
	color: rgba(15, 23, 42, 0.82);
    padding: 12px;
    margin-bottom: 20px;
	border: 1px solid rgba(148, 163, 184, 0.35);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.78);
	text-align: center;
}

.forgot-header h4 {
	color: #0f172a;
	margin-top:0;
	margin-bottom:6px;
}

.alert-msg {
	color: #166534;
    padding: 8px;
	margin-top: -8px;
    margin-bottom: 12px;
	border: 1px solid rgba(34, 197, 94, 0.4);
	border-radius: 16px;
	background: rgba(220, 252, 231, 0.7);
	text-align: center;
}
			
.alert-msg.danger {
	color: #b91c1c;
    border-color: rgba(239, 68, 68, 0.45);
}

/* form - input icon */
.auth-field {
	--field-accent: var(--auth-cyan);
	--field-ring: rgba(8, 145, 178, 0.14);
	animation: authHeaderRise 0.55s ease both;
}

.auth-field:nth-of-type(2) {
	animation-delay: 0.08s;
}

.auth-field-label {
	display: block;
	margin: 0 0 8px 18px;
	color: rgba(15, 23, 42, 0.74);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.01em;
	transform: translateY(2px);
	transition: color 0.26s ease, transform 0.26s cubic-bezier(0.22, 1, 0.36, 1);
}

.auth-field:focus-within .auth-field-label {
	color: var(--field-accent);
	transform: translateY(0);
}

.input-group-icon {
	display: block;
	width: 100%;
	position: relative;
	z-index: 0;
	border-radius: 999px;
	isolation: isolate;
	transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), filter 0.28s ease;
}

.input-group-icon:before {
	content: '';
	position: absolute;
	inset: -2px;
	border-radius: 999px;
	background: linear-gradient(135deg, rgba(29, 78, 216, 0.9), rgba(8, 145, 178, 0.88), rgba(5, 150, 105, 0.86));
	opacity: 0;
	transform: scale(0.985);
	transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
	z-index: -1;
}

.input-group-icon:after {
	content: '';
	position: absolute;
	inset: 1px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	z-index: 0;
	pointer-events: none;
}

.input-group-icon:hover,
.input-group-icon:focus-within {
	transform: translateY(-2px);
	filter: drop-shadow(0 18px 26px rgba(8, 145, 178, 0.12));
}

.input-group-icon:hover:before,
.input-group-icon:focus-within:before {
	opacity: 1;
	transform: scale(1);
}

.input-group-icon input.form-control {
	display: block;
	width: 100%;
	height: 54px;
	font-size: 15px;
	font-weight: 700;
	padding-right: 52px;
	position: relative;
	z-index: 1;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.92));
	border: 1px solid rgba(100, 116, 139, 0.3);
	box-shadow: none;
	color: var(--auth-ink);
	caret-color: var(--auth-cyan);
	transition: border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), background 0.28s ease, color 0.28s ease;
}

.input-group-icon:hover input.form-control,
.input-group-icon:focus-within input.form-control {
	background: #ffffff;
	border-color: transparent;
	box-shadow:
		0 0 0 5px var(--field-ring),
		0 18px 34px rgba(15, 23, 42, 0.09);
	transform: none;
}

.input-group-icon input.form-control:not(:placeholder-shown) {
	border-color: rgba(8, 145, 178, 0.34);
	background: #ffffff;
}

.input-group-icon input.form-control:first-child,
.input-group-icon input.form-control:last-child {
	-webkit-border-radius: 999px;
	border-radius: 999px;
}

.input-group-icon .input-group-addon {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	padding: 0;
	border: 0 none;
	width: 54px;
	z-index: 4;
	display: block;
	background: transparent;
	pointer-events: none;
}

.username-field .input-group-addon,
.password-field .input-group-addon {
	left: 0;
	right: auto;
}

.input-group-icon .input-group-addon span.icon {
	position: absolute;
	inset: 0;
	border: 0;
	z-index: 4;
	width: 54px;
	height: 54px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 0;
	background: transparent;
	line-height: 1;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	pointer-events: none;
}

.input-group-icon .input-group-addon span.icon i {
	color: rgba(15, 23, 42, 0.5);
	font-size: 15px;
	transition: color 0.28s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.input-group-icon:hover .input-group-addon span.icon i,
.input-group-icon:focus-within .input-group-addon span.icon i {
	color: var(--auth-cyan);
	transform: translateY(-1px) scale(1.12);
}

.input-group-icon .input-group-addon:last-child span.icon {
	left: 0;
	right: auto;
}

.username-field .fa-unlock-alt,
.password-field .fa-user {
	display: none;
}

.username-field .fa-user,
.password-field .fa-unlock-alt {
	display: inline-block;
}

.input-group-icon .input-group-addon + input.form-control {
	padding-left: 54px;
}

.username-field .input-group-addon + input.form-control {
	padding-right: 52px;
}

.auth-field-status {
	position: absolute;
	right: 18px;
	top: 50%;
	z-index: 5;
	width: 22px;
	height: 22px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: rgba(5, 150, 105, 0.12);
	color: var(--auth-emerald);
	font-size: 10px;
	opacity: 0;
	transform: translateY(-50%) scale(0.72);
	transition: opacity 0.24s ease, transform 0.24s cubic-bezier(0.22, 1, 0.36, 1);
	pointer-events: none;
}

.username-field input.form-control:not(:placeholder-shown) + .auth-field-status {
	opacity: 1;
	transform: translateY(-50%) scale(1);
}

.password-toggle {
	position: absolute;
	right: 8px;
	top: 50%;
	z-index: 6;
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: rgba(15, 23, 42, 0.5);
	outline: none;
	transform: translateY(-50%);
	transition: color 0.24s ease, background 0.24s ease, transform 0.24s cubic-bezier(0.22, 1, 0.36, 1);
}

.password-toggle:hover,
.password-toggle:focus {
	color: var(--auth-cyan);
	background: rgba(8, 145, 178, 0.1);
	transform: translateY(-50%) scale(1.06);
	outline: none;
}

.password-field .input-group-addon + input.form-control {
	padding-right: 56px;
}

.auth-field.has-error .auth-field-label,
.auth-field.has-error .input-group-addon span.icon i {
	color: #dc2626;
}

.auth-field.has-error .input-group-icon:before {
	background: linear-gradient(135deg, rgba(220, 38, 38, 0.9), rgba(245, 158, 11, 0.82));
	opacity: 1;
}

.auth-field.has-error input.form-control {
	border-color: transparent;
	box-shadow: 0 0 0 5px rgba(220, 38, 38, 0.1);
}

.auth-field .error {
	display: block;
	margin: 8px 0 0 18px;
	color: #dc2626;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.35;
}

@media (max-width: 767px) {
	.auth-field-label {
		margin-left: 14px;
		font-size: 12px;
	}

	.input-group-icon input.form-control {
		height: 50px;
		font-size: 14px;
	}

	.input-group-icon .input-group-addon,
	.input-group-icon .input-group-addon span.icon {
		width: 50px;
		height: 50px;
	}

	.input-group-icon .input-group-addon + input.form-control {
		padding-left: 50px;
	}

	.password-toggle {
		width: 38px;
		height: 38px;
	}
}

/* Final login input polish: soft rounded rectangle fields and a real eye control */
.sign-area form .auth-field {
	--auth-field-radius: 18px;
}

.sign-area form .auth-input-wrap,
.sign-area form .auth-input-wrap:before,
.sign-area form .auth-input-wrap:after,
.sign-area form .auth-input-wrap input.form-control,
.sign-area form .auth-input-wrap input.form-control:first-child,
.sign-area form .auth-input-wrap input.form-control:last-child,
.sign-area form .auth-input-wrap.input-group .form-control,
.sign-area form .auth-input-wrap.input-group .form-control:not(:first-child):not(:last-child) {
	-webkit-border-radius: var(--auth-field-radius) !important;
	border-radius: var(--auth-field-radius) !important;
}

.sign-area form .auth-input-wrap {
	min-height: 56px;
	overflow: visible;
}

.sign-area form .auth-input-wrap:before {
	inset: -3px;
	background:
		linear-gradient(135deg, rgba(29, 78, 216, 0.9), rgba(8, 145, 178, 0.82), rgba(5, 150, 105, 0.82));
}

.sign-area form .auth-input-wrap:after {
	inset: 1px;
	background: rgba(255, 255, 255, 0.95);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.sign-area form .auth-input-wrap input.form-control {
	height: 56px;
	border: 1px solid rgba(100, 116, 139, 0.28);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.94));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.88),
		0 14px 30px rgba(15, 23, 42, 0.055);
}

.sign-area form .auth-input-wrap:hover input.form-control,
.sign-area form .auth-input-wrap:focus-within input.form-control {
	box-shadow:
		0 0 0 4px rgba(8, 145, 178, 0.12),
		0 18px 38px rgba(8, 145, 178, 0.12),
		inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.sign-area form .password-toggle {
	-webkit-appearance: none;
	appearance: none;
	right: 9px;
	top: 50%;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 1px solid rgba(100, 116, 139, 0.18);
	border-radius: 14px;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(241, 245, 249, 0.74));
	color: rgba(71, 85, 105, 0.82);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.9),
		0 10px 22px rgba(15, 23, 42, 0.08);
	line-height: 1;
	transform: translateY(-50%);
}

.sign-area form .password-toggle i {
	position: relative;
	z-index: 1;
	font-size: 15px;
	line-height: 1;
	transition: transform 0.24s cubic-bezier(0.22, 1, 0.36, 1), color 0.24s ease;
}

.sign-area form .password-toggle:before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: linear-gradient(135deg, rgba(29, 78, 216, 0.92), rgba(8, 145, 178, 0.9));
	opacity: 0;
	transform: scale(0.86);
	transition: opacity 0.24s ease, transform 0.24s cubic-bezier(0.22, 1, 0.36, 1);
}

.sign-area form .password-toggle:hover,
.sign-area form .password-toggle:focus,
.sign-area form .password-toggle.is-visible {
	border-color: transparent;
	color: #ffffff;
	background: transparent;
	box-shadow:
		0 14px 28px rgba(8, 145, 178, 0.2),
		0 0 0 4px rgba(8, 145, 178, 0.1);
	transform: translateY(-50%) scale(1.04);
	outline: none;
}

.sign-area form .password-toggle:hover:before,
.sign-area form .password-toggle:focus:before,
.sign-area form .password-toggle.is-visible:before {
	opacity: 1;
	transform: scale(1);
}

.sign-area form .password-toggle:hover i,
.sign-area form .password-toggle:focus i,
.sign-area form .password-toggle.is-visible i {
	color: #ffffff;
	transform: scale(1.08);
}

@media (max-width: 767px) {
	.sign-area form .auth-field {
		--auth-field-radius: 16px;
	}

	.sign-area form .auth-input-wrap {
		min-height: 52px;
	}

	.sign-area form .auth-input-wrap input.form-control {
		height: 52px;
	}

	.sign-area form .password-toggle {
		right: 7px;
		width: 38px;
		height: 38px;
		border-radius: 13px;
	}
}

/* Orange and white brand pass for the login form */
.sign-area form .auth-field {
	--field-accent: #ff685c;
	--field-ring: rgba(255, 104, 92, 0.14);
}

.sign-area form .auth-field-label {
	display: none;
}

.sign-area form .auth-input-wrap {
	margin-top: 0;
}

.sign-area form .auth-input-wrap:before {
	background:
		linear-gradient(135deg, rgba(255, 189, 46, 0.9), rgba(255, 104, 92, 0.92));
	box-shadow: 0 18px 38px rgba(255, 104, 92, 0.12);
}

.sign-area form .auth-input-wrap:after {
	background: rgba(255, 255, 255, 0.8);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}

.sign-area form .auth-input-wrap input.form-control {
	border-color: rgba(15, 23, 42, 0.12);
	background-color: rgba(255, 255, 255, 0.8);
	background-image: none;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	caret-color: #ff685c;
}

.sign-area form .auth-input-wrap:hover input.form-control,
.sign-area form .auth-input-wrap:focus-within input.form-control {
	border-color: rgba(255, 104, 92, 0.40);
	background-color: rgba(255, 255, 255, 0.92);
	box-shadow:
		0 0 0 4px rgba(255, 104, 92, 0.14),
		0 18px 38px rgba(255, 104, 92, 0.12),
		inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.sign-area form .auth-input-wrap input.form-control:not(:placeholder-shown) {
	border-color: rgba(255, 104, 92, 0.40);
}

.sign-area form .input-group-icon:hover .input-group-addon span.icon i,
.sign-area form .input-group-icon:focus-within .input-group-addon span.icon i {
	color: #ff685c;
}

.sign-area form .auth-field-status {
	background: rgba(255, 104, 92, 0.12);
	color: #ff685c;
}

.sign-area form .password-toggle {
	border-color: rgba(15, 23, 42, 0.12);
	background-color: rgba(255, 255, 255, 0.8);
	background-image: none;
	color: rgba(15, 23, 42, 0.58);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}

.sign-area form .password-toggle:before {
	background: linear-gradient(135deg, #ffbd2e, #ff685c);
}

.sign-area form .password-toggle:hover,
.sign-area form .password-toggle:focus,
.sign-area form .password-toggle.is-visible {
	box-shadow:
		0 14px 28px rgba(255, 104, 92, 0.22),
		0 0 0 4px rgba(255, 104, 92, 0.14);
}

.btn-round:hover,
.btn-round:focus,
.btn-round:active {
	background: linear-gradient(135deg, #ffbd2e, #ff685c);
	color: #ffffff;
	border-color: transparent;
	box-shadow: 0 18px 38px rgba(255, 104, 92, 0.24);
}

.sign-area .sign-hader h2:after {
	background: linear-gradient(90deg, #ffbd2e, #ff685c);
	box-shadow: 0 10px 24px rgba(255, 104, 92, 0.22);
}

/* Transparent hover pass: keep focus visible, remove hover color fill */
.sign-area form .auth-input-wrap:hover:not(:focus-within):before {
	opacity: 0;
}

.sign-area form .auth-input-wrap:hover:not(:focus-within) {
	filter: none;
	transform: none;
}

.sign-area form .auth-input-wrap:hover:not(:focus-within) input.form-control {
	background-color: transparent;
	border-color: rgba(15, 23, 42, 0.12);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.68),
		0 10px 24px rgba(15, 23, 42, 0.045);
}

.sign-area form .password-toggle:hover:not(:focus):not(.is-visible) {
	background-color: transparent;
	border-color: rgba(15, 23, 42, 0.12);
	color: rgba(15, 23, 42, 0.7);
	box-shadow: none;
}

.sign-area form .password-toggle:hover:not(:focus):not(.is-visible):before {
	opacity: 0;
}

@keyframes authFieldSoftClick {
	0% { transform: translateY(0) scale(1); }
	45% { transform: translateY(-1px) scale(1.006); }
	100% { transform: translateY(0) scale(1); }
}

/* Transparent click/focus pass with smooth interaction */
.sign-area form .auth-input-wrap:focus-within,
.sign-area form .auth-input-wrap:active {
	filter: none;
	animation: authFieldSoftClick 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.sign-area form .auth-input-wrap:focus-within:before,
.sign-area form .auth-input-wrap:active:before {
	opacity: 0;
}

.sign-area form .auth-input-wrap:focus-within:after,
.sign-area form .auth-input-wrap:active:after {
	background: transparent;
}

.sign-area form .auth-input-wrap:focus-within input.form-control,
.sign-area form .auth-input-wrap:active input.form-control {
	background-color: transparent;
	border-color: rgba(255, 104, 92, 0.40);
	box-shadow:
		0 0 0 4px rgba(255, 255, 255, 0.18),
		0 14px 30px rgba(15, 23, 42, 0.07),
		inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.sign-area form .password-toggle:focus,
.sign-area form .password-toggle:active,
.sign-area form .password-toggle.is-visible {
	background-color: transparent;
	border-color: rgba(255, 104, 92, 0.40);
	color: #ff685c;
	box-shadow:
		0 0 0 4px rgba(255, 255, 255, 0.18),
		0 10px 22px rgba(15, 23, 42, 0.06);
	transform: translateY(-50%) scale(1.05);
}

.sign-area form .password-toggle:focus:before,
.sign-area form .password-toggle:active:before,
.sign-area form .password-toggle.is-visible:before {
	opacity: 0;
}

.sign-area form .password-toggle:focus i,
.sign-area form .password-toggle:active i,
.sign-area form .password-toggle.is-visible i {
	color: #ff685c;
	transform: scale(1.1);
}

/* Glass hover treatment for login button */
.sign-area form .btn-round {
	border-color: rgba(15, 23, 42, 0.16);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.34));
	-webkit-backdrop-filter: blur(14px) saturate(150%);
	backdrop-filter: blur(14px) saturate(150%);
	transition:
		transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.32s ease,
		border-color 0.32s ease,
		background-color 0.32s ease,
		color 0.32s ease;
}

.sign-area form .btn-round:after {
	content: '';
	position: absolute;
	inset: 1px;
	border-radius: inherit;
	background:
		linear-gradient(120deg, rgba(255, 255, 255, 0.62), transparent 32%, rgba(255, 189, 46, 0.1) 58%, transparent 74%);
	opacity: 0;
	transform: translateX(-28%);
	transition: opacity 0.32s ease, transform 0.58s cubic-bezier(0.22, 1, 0.36, 1);
	pointer-events: none;
}

.sign-area form .btn-round:hover,
.sign-area form .btn-round:focus,
.sign-area form .btn-round:active {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.2));
	border-color: rgba(255, 104, 92, 0.42);
	color: #0f172a;
	box-shadow:
		0 0 0 4px rgba(255, 104, 92, 0.09),
		0 18px 38px rgba(15, 23, 42, 0.12),
		inset 0 1px 0 rgba(255, 255, 255, 0.82);
	transform: translateY(-3px) scale(1.01);
	outline: none !important;
}

.sign-area form .btn-round:hover:before,
.sign-area form .btn-round:focus:before,
.sign-area form .btn-round:active:before {
	background: linear-gradient(90deg, transparent, rgba(255, 189, 46, 0.22), rgba(255, 104, 92, 0.18), transparent);
	transform: translateX(120%);
}

.sign-area form .btn-round:hover:after,
.sign-area form .btn-round:focus:after,
.sign-area form .btn-round:active:after {
	opacity: 1;
	transform: translateX(28%);
}

.sign-area form .btn-round i {
	position: relative;
	z-index: 1;
	transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), color 0.28s ease;
}

.sign-area form .btn-round:hover i,
.sign-area form .btn-round:focus i,
.sign-area form .btn-round:active i {
	color: #ff685c;
	transform: translateX(2px) scale(1.08);
}

/* Form - Custom Checkbox */
.checkbox-replace .i-checks {
	padding-left: 20px;
	cursor: pointer;
	margin-bottom: 0;
	font-weight: 500;
}

.checkbox-replace .i-checks input {
	position: absolute;
	margin-left: -20px;
	opacity: 0;
}

.checkbox-replace .i-checks input:checked + span .active {
	display: inherit;
}

.checkbox-replace .i-checks > span {
	margin-left: -20px;
}

.checkbox-replace .i-checks > span .active {
	display: none;
}

.checkbox-replace .i-checks > i {
	position: relative;
	display: inline-block;
	width: 20px;
	height: 20px;
	margin-top: -2px;
	margin-right: 4px;
	margin-left: -20px;
	line-height: 1;
	vertical-align: middle;
	background-color: #ffffff;
	border: 1px solid rgba(100, 116, 139, 0.48);
	border-radius: 6px;
	-webkit-transition: all .2s;
	transition: all .2s;
}

html.dark .checkbox-replace .i-checks > i {
	border-color: #535353;
}

.checkbox-replace .i-checks > i:before {
	content: "";
	position: absolute;
	top: 4px;
	left: 4px;
	width: 10px;
	height: 10px;
	background-color: var(--auth-cyan);
	border-radius: 3px;
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	-webkit-transition: all .2s;
	transition: all .2s;
}

.checkbox-replace .i-checks input:checked + i {
	border-color: var(--auth-cyan);
}

html.dark .checkbox-replace .i-checks input:checked + i{
	border-color: #ff685c;
}

.checkbox-replace .i-checks input:checked + i:before {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

html.dark .checkbox-replace .i-checks input:checked + i:before {
	background-color: #ff685c;
}

.checkbox-replace .i-checks input:disabled + i {
	border-color: #dee5e7;
}

.checkbox-replace .i-checks input:disabled + i:before{
	background-color: #dee5e7;
}

html.dark .checkbox-replace .i-checks input:disabled + i{
	border-color: #4c4c4d;
}

html.dark .checkbox-replace .i-checks input:disabled + i:before{
	background-color: #4c4c4d;
}

/* Forms Validations */
label.valid {
	display: inline-block;
	text-indent: -9999px;
}

span.error {
	color: #b91c1c;
	font-size: 0.9em;
	font-weight: normal;
	margin-top: -5px;
	margin-bottom: 0;
	padding: 0;
}

/* animation */
.slideIn {
	-webkit-animation-name: slideIn;
	-moz-animation-name: slideIn;
	-o-animation-name: slideIn;
	animation-name: slideIn;
	-webkit-animation-timing-function: ease;
	-moz-animation-timing-function: ease;
	-o-animation-timing-function: ease;
	animation-timing-function: ease;
	-webkit-animation-duration: 1s;
	-moz-animation-duration: 1s;
	-ms-animation-duration: 1s;
	-o-animation-duration: 1s;
	animation-duration: 1s;
	visibility: visible !important;
	border-radius: var(--auth-radius);
	overflow: hidden;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.16);
	box-shadow: var(--auth-shadow);
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
}

.slideIn > [class*="col-"] {
	flex: 0 0 auto;
}
			
@-webkit-keyframes slideIn {
    0% {
		opacity: 0;
		-webkit-transform: translateY(22px) scale(0.98);
	}
    100% {
		opacity: 1;
		-webkit-transform: translateY(0) scale(1);
	}
}
			
@-moz-keyframes slideIn {
    0% {
		opacity: 0;
		-moz-transform: translateY(22px) scale(0.98);
	}
    100% {
		opacity: 1;
		-moz-transform: translateY(0) scale(1);
	}
}
@-o-keyframes slideIn {
    0% {
		opacity: 0;
		-o-transform: translateY(22px) scale(0.98);
	}
    100% {
		opacity: 1;
		-o-transform: translateY(0) scale(1);
	}
}
@keyframes slideIn {
    0% {
		opacity: 0;
		transform: translateY(22px) scale(0.98);
	}
    100% {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

/* media queries */
@media(max-width:991px) {
	.auth-main {
		align-items: flex-start;
		padding: 18px 10px;
	}

	.auth-main .container {
		width: 100%;
	}

	.slideIn {
		display: block;
		border-radius: 16px;
	}

	.slideIn .col-lg-4,
	.slideIn .col-md-4,
	.slideIn .col-lg-6,
	.slideIn .col-md-6,
	.slideIn .col-sm-12,
	.slideIn .col-xs-12 {
		width: 100%;
		float: none;
	}

	.image-area {
		min-height: 280px;
		border-radius: 16px 16px 0 0;
	}

	.image-area .content {
		padding: 42px 22px;
	}

	.img-hol-p {
		top: 22px;
		left: 22px;
		width: 68px;
		height: 68px;
	}

    .sign-area {
        -webkit-border-radius: 12px;
        -moz-border-radius: 12px;
        border-radius: 0 0 16px 16px;
		min-height: auto;
    }

	.sign-area::before {
	    display: none;
	}

	.sign-area {
	    padding: 34px 20px 28px;
	}

	.sign-area .sign-hader {
		padding-top: 0;
		padding-bottom: 24px;
		justify-content: center;
		text-align: center;
		flex-direction: column;
		align-items: center;
		gap: 14px;
	}

	.sign-area .sign-kicker {
		justify-content: center;
	}

	.sign-area .sign-hader h2:after {
		left: 50%;
		transform: translateX(-50%);
	}

	.w-full {
	    padding: 8px 5px;
	}
}

@media(max-width:575px) {
	.auth-main {
		padding: 0;
	}

	.slideIn {
		min-height: 100vh;
		border-radius: 0;
		border: 0;
	}

	.image-area {
		border-radius: 0;
		min-height: 220px;
	}

	.sign-area {
		border-radius: 0;
		padding: 28px 18px 24px;
	}

	.forgot-text {
		align-items: flex-start;
		flex-direction: column;
		gap: 8px;
	}

	.sign-area .sign-hader h2 {
		font-size: 22px;
	}

	.img-hol-p:before {
		border-radius: 24px;
	}

	.image-area .img-hol-p img {
		width: 52px;
		height: 52px;
	}
}

@media(max-width:1199px) {
	.sign-area::before {
	    border-right-width: 50px; 
	    border-top-width: 60px; 
	    border-bottom-width: 60px; 
	    left: -50px;
	    top: 223px;
	}
}
