:root {
	--simkeu-accent: #0f766e;
	--simkeu-accent-strong: #115e59;
	--simkeu-ink: #0f172a;
	--simkeu-muted: #64748b;
}

.simkeu-login-body .auth-fluid {
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 2rem;
	gap: 1.25rem;
}

.simkeu-login-body .auth-fluid-form-box {
	width: 100%;
	max-width: 560px;
	background: rgba(255, 255, 255, 0.94);
	border-radius: 28px;
	backdrop-filter: blur(14px);
	border: 1px solid rgba(255, 255, 255, 0.4);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
	animation: simkeuFadeUp .5s ease-out;
}

.simkeu-login-body .card-body {
	padding: 2.4rem 2.6rem;
	overflow: visible;
}

.simkeu-login-body .login-hero {
	background: transparent;
	border-radius: 22px;
	padding: 1.5rem 1.25rem 1.35rem;
	margin-bottom: 1.35rem;
	box-shadow: none;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.simkeu-login-body .login-hero::after {
	content: none;
	position: absolute;
	inset: auto -22% -42% auto;
	width: 220px;
	height: 220px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
	pointer-events: none;
}

/* Lightweight staggered entrance for login card content */
.simkeu-login-body .card-body > * {
	opacity: 0;
	animation: simkeuSoftRise .45s ease-out forwards;
}

.simkeu-login-body .card-body > *:nth-child(1) { animation-delay: .05s; }
.simkeu-login-body .card-body > *:nth-child(2) { animation-delay: .12s; }
.simkeu-login-body .card-body > *:nth-child(3) { animation-delay: .19s; }
.simkeu-login-body .card-body > *:nth-child(4) { animation-delay: .26s; }

.simkeu-login-body .auth-brand {
	margin-bottom: .75rem !important;
}

.simkeu-login-body .login-heading {
	font-size: clamp(2rem, 4.2vw, 3.25rem);
	font-weight: 800;
	color: #0f172a;
	line-height: 1.14;
	margin-bottom: .35rem;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
	position: relative;
	z-index: 5;
	clear: both;
}

.simkeu-login-body .login-subtitle {
	color: var(--simkeu-muted);
	max-width: 540px;
	margin: 0 auto;
	font-size: 1.02rem;
	position: relative;
	z-index: 5;
	clear: both;
}

.simkeu-login-body .form-label {
	font-weight: 700;
	color: #0f172a;
	font-size: .95rem;
	position: relative;
	z-index: 5;
}

.simkeu-login-body .form-control {
	border-radius: 14px;
	padding: .8rem 1rem;
	border: 1px solid #e2e8f0;
	position: relative;
	z-index: 5;
	background: #fff;
	font-size: 1rem;
	line-height: 1.5;
}

.simkeu-login-body .form-control:focus {
	border-color: var(--simkeu-accent);
	box-shadow: 0 0 0 0.2rem rgba(15, 118, 110, 0.18);
}

.simkeu-login-body .mb-3 {
	position: relative;
	z-index: 5;
}

.simkeu-login-body .input-group {
	position: relative;
	z-index: 5;
}

.simkeu-login-body .btn-primary {
	background: linear-gradient(120deg, #0f766e 0%, #0d5c5a 100%);
	border: none;
	border-radius: 14px;
	padding: .85rem 1rem;
	font-weight: 700;
	letter-spacing: .3px;
	transition: transform .2s ease, box-shadow .2s ease;
	font-size: 1.02rem;
}

.simkeu-login-body .btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 28px rgba(15, 118, 110, .35);
	background: linear-gradient(120deg, #0d5c5a 0%, #094f4c 100%);
}

.simkeu-login-body .text-center {
	position: relative;
	z-index: 5;
}

.simkeu-login-body .d-grid {
	position: relative;
	z-index: 5;
}

.simkeu-login-body #LogInRes {
	position: relative;
	z-index: 5;
}

.simkeu-login-body .auth-fluid-right {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1;
	min-height: 460px;
	border-radius: 24px;
	color: #fff;
	background:
		radial-gradient(circle at 20% 20%, rgba(251, 191, 36, .22), transparent 36%),
		linear-gradient(135deg, #0f766e 0%, #0e7490 55%, #0369a1 100%);
	box-shadow: 0 20px 40px rgba(2, 132, 199, 0.2);
	animation: simkeuFadeIn .65s ease-out;
}

.simkeu-login-body .auth-user-testimonial {
	max-width: 540px;
	padding: 2rem;
}

.simkeu-login-body .auth-user-testimonial h2 {
	font-size: 2rem;
	font-weight: 800;
	line-height: 1.25;
}

.simkeu-login-body .auth-user-testimonial h5 {
	font-weight: 600;
	opacity: .95;
}

.simkeu-login-body .simkeu-badge {
	display: inline-block;
	padding: .35rem .65rem;
	border-radius: 999px;
	font-size: .78rem;
	font-weight: 700;
	background: rgba(255, 255, 255, .2);
	margin-bottom: .9rem;
}

@keyframes simkeuFadeUp {
	from { opacity: 0; transform: translateY(18px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes simkeuFadeIn {
	from { opacity: 0; transform: translateX(18px); }
	to { opacity: 1; transform: translateX(0); }
}

@keyframes simkeuSoftRise {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Logo Container Styles */
.simkeu-login-body .auth-logo-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .65rem;
	margin-bottom: 1rem;
	padding: 0 .5rem;
	position: relative;
	z-index: 10;
	overflow: visible;
}

.simkeu-login-body .auth-logo-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	flex-wrap: nowrap;
	width: fit-content;
	max-width: 100%;
	min-height: auto;
	padding: .15rem;
	background: transparent;
	border-radius: 0;
	border: none;
	box-shadow: none;
	position: relative;
	z-index: 10;
	overflow: hidden;
}

.simkeu-login-body .auth-logo-item {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	flex: 0 1 auto;
}

.simkeu-login-body .auth-logo-img {
	height: clamp(64px, 7vw, 92px);
	max-height: 92px;
	max-width: 100%;
	width: auto;
	object-fit: contain;
	opacity: 1;
	transition: opacity .3s ease, transform .3s ease;
	display: block;
}

.simkeu-login-body .auth-logo-item:hover .auth-logo-img {
	opacity: 1;
	transform: scale(1.08);
}

.simkeu-login-body .auth-logo-main {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	background: transparent;
	border-radius: 0;
	border: none;
	width: fit-content;
	max-width: 100%;
	min-height: auto;
	box-shadow: none;
	position: relative;
	z-index: 10;
	overflow: hidden;
}

.simkeu-login-body .auth-logo-main-img {
	height: clamp(84px, 10vw, 148px);
	max-height: 148px;
	max-width: 100%;
	width: auto;
	object-fit: contain;
	opacity: 1;
	transition: opacity .3s ease, transform .3s ease;
	display: block;
}

.simkeu-login-body .auth-logo-main:hover .auth-logo-main-img {
	opacity: 1;
	transform: scale(1.1);
}

@media (max-width: 991px) {
	.simkeu-login-body .auth-fluid {
		flex-direction: column;
		padding: 1rem;
	}

	.simkeu-login-body .auth-fluid-form-box,
	.simkeu-login-body .auth-fluid-right {
		max-width: 100%;
		width: 100%;
	}

	.simkeu-login-body .auth-fluid-right {
		min-height: 300px;
	}

	.simkeu-login-body .card-body {
		padding: 2.2rem 2.4rem;
	}

	.simkeu-login-body .auth-logo-container {
		gap: .55rem;
		margin-bottom: .9rem;
	}

	.simkeu-login-body .auth-logo-row {
		gap: 1.4rem;
		min-height: auto;
		padding: .2rem;
	}

	.simkeu-login-body .auth-logo-img {
		height: clamp(52px, 9vw, 74px);
		max-height: 74px;
	}

	.simkeu-login-body .auth-logo-main {
		min-height: auto;
		padding: 0;
	}

	.simkeu-login-body .auth-logo-main-img {
		height: clamp(62px, 12vw, 104px);
		max-height: 104px;
	}

	.simkeu-login-body .login-hero {
		padding: 1.25rem 1rem 1.1rem;
	}

	.simkeu-login-body .login-heading {
		font-size: clamp(1.75rem, 6vw, 2.6rem);
	}

	.simkeu-login-body .login-subtitle {
		font-size: .95rem;
	}
}

@media (max-width: 576px) {
	.simkeu-login-body .auth-logo-container {
		gap: .7rem;
		margin-bottom: 1rem;
	}

	.simkeu-login-body .card-body {
		padding: 1.95rem 2rem;
	}

	.simkeu-login-body .auth-logo-row {
		gap: .75rem;
		min-height: auto;
		padding: .1rem;
	}

	.simkeu-login-body .auth-logo-img {
		height: clamp(42px, 13vw, 62px);
		max-height: 62px;
	}

	.simkeu-login-body .auth-logo-main {
		min-height: auto;
		padding: 0;
	}

	.simkeu-login-body .auth-logo-main-img {
		height: clamp(54px, 14vw, 82px);
		max-height: 82px;
	}

	.simkeu-login-body .login-hero {
		border-radius: 18px;
		padding: 1rem .85rem .95rem;
	}

	.simkeu-login-body .login-heading {
		font-size: clamp(1.55rem, 8.2vw, 2.05rem);
	}

	.simkeu-login-body .login-subtitle {
		font-size: .9rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.simkeu-login-body .card-body > * {
		opacity: 1;
		animation: none;
	}
}
