@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700&family=Rajdhani:wght@300;400;500;600;700&family=Space+Mono:wght@400;700&display=swap');

/* ===================================================================
   LOGIN PAGE - BASE STYLES (shared across all variants)
   =================================================================== */

body:has(.login-page)
{
	padding: 0 !important;
	margin: 0 !important;
	overflow: hidden !important;
}

body:has(.login-page) > .app-content
{
	padding: 0 !important;
	margin: 0 !important;
}

.login-page
{
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	overflow: hidden;
	overflow-y: auto;
	font-family: 'Rajdhani', 'Public Sans', sans-serif;
	z-index: 100;
}

.login-page__bg
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.login-page__bg img
{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.login-page__overlay
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.login-page__form-wrap
{
	position: relative;
	z-index: 2;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.login-page__card
{
	width: 100%;
	max-width: 420px;
	padding: 2.5rem;
	position: relative;
	margin-right: 4%;
}

.login-page__logo
{
	display: flex;
	justify-content: center;
	margin-bottom: 1rem;
}

.login-page__logo img
{
	max-width: 180px;
	height: auto;
	object-fit: contain;
}

.login-page__title
{
	text-align: center;
	margin-bottom: 0.25rem;
	font-weight: 600;
	font-size: 1.35rem;
}

.login-page__slogan
{
	text-align: center;
	margin-bottom: 1.5rem;
	font-size: 0.9rem;
	opacity: 0.7;
}

.login-page__alert
{
	margin-bottom: 1rem;
	padding: 0.75rem 1rem;
	border-radius: 6px;
	font-size: 0.85rem;
}

.login-page__field
{
	margin-bottom: 1.25rem;
}

.login-page__label
{
	display: block;
	margin-bottom: 0.4rem;
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.login-page__input
{
	width: 100%;
	padding: 0.65rem 0.9rem;
	font-size: 0.9rem;
	outline: none;
	transition: border-color 0.3s, box-shadow 0.3s;
	color: #ffffff !important;
	background: rgba(0, 0, 0, 0.25) !important;
}

.login-page__input::placeholder
{
	color: rgba(255, 255, 255, 0.45) !important;
}

.login-page__input:focus
{
	outline: none;
	color: #ffffff !important;
}

.login-page__input:-webkit-autofill,
.login-page__input:-webkit-autofill:hover,
.login-page__input:-webkit-autofill:focus,
.login-page__input:-webkit-autofill:active
{
	-webkit-text-fill-color: #ffffff !important;
	-webkit-box-shadow: 0 0 0 1000px rgba(0, 0, 0, 0.35) inset !important;
	box-shadow: 0 0 0 1000px rgba(0, 0, 0, 0.35) inset !important;
	transition: background-color 9999s ease-in-out 0s;
	caret-color: #ffffff;
}

.login-page__password-wrap
{
	position: relative;
	display: flex;
}

.login-page__password-wrap .login-page__input
{
	padding-right: 2.8rem;
}

.login-page__password-toggle
{
	position: absolute;
	right: 0.75rem;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	font-size: 1.1rem;
	opacity: 0.6;
	transition: opacity 0.2s;
}

.login-page__password-toggle:hover
{
	opacity: 1;
}

.login-page__captcha-row
{
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.login-page__captcha-img
{
	flex-shrink: 0;
	border-radius: 4px;
	height: 42px;
}

.login-page__captcha-refresh
{
	flex-shrink: 0;
	cursor: pointer;
	padding: 0.35rem 0.5rem;
	border-radius: 4px;
	font-size: 1rem;
	transition: all 0.2s;
}

.login-page__captcha-input
{
	flex: 1;
	min-width: 0;
}

.login-page__submit
{
	width: 100%;
	padding: 0.75rem;
	font-size: 1rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.3s;
	margin-top: 0.5rem;
}

.login-page__version
{
	text-align: center;
	margin-top: 1.25rem;
	font-size: 0.8rem;
	opacity: 0.5;
}

.login-page__design-switcher
{
	position: fixed;
	bottom: 1rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 9999;
	display: flex;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(10px);
	border-radius: 50px;
}

.login-page__design-switcher a
{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	color: #fff;
	text-decoration: none;
	font-weight: 700;
	font-size: 0.8rem;
	font-family: 'Orbitron', monospace;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s;
}

.login-page__design-switcher a:hover,
.login-page__design-switcher a.active
{
	background: rgba(0, 200, 255, 0.3);
	border-color: #00c8ff;
	color: #00c8ff;
}

@media (max-width: 768px)
{
	.login-page__form-wrap
	{
		justify-content: center;
	}
	.login-page__card
	{
		max-width: 100%;
		padding: 1.5rem;
		margin: 0 1rem;
	}
}


/* ===================================================================
   THEME A - GLASSMORPHISM CENTER
   =================================================================== */

.login-theme-a .login-page__overlay
{
	background: none;
}

.login-theme-a .login-page__card
{
	background: rgba(10, 15, 30, 0.55);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	border: 1px solid rgba(0, 200, 255, 0.15);
	border-radius: 20px;
	box-shadow:
		0 0 40px rgba(0, 200, 255, 0.08),
		0 8px 32px rgba(0, 0, 0, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.login-theme-a .login-page__title
{
	color: #7dd8ff;
	font-family: 'Orbitron', sans-serif;
	font-weight: 500;
	font-size: 1.15rem;
	letter-spacing: 0.05em;
	text-shadow: 0 0 20px rgba(0, 200, 255, 0.15);
}

.login-theme-a .login-page__slogan
{
	color: rgba(160, 215, 240, 0.65);
}

.login-theme-a .login-page__alert
{
	background: rgba(255, 180, 0, 0.15);
	border: 1px solid rgba(255, 180, 0, 0.3);
	color: #ffc857;
}

.login-theme-a .login-page__label
{
	color: rgba(150, 210, 255, 0.8);
	font-family: 'Rajdhani', sans-serif;
}

.login-theme-a .login-page__input
{
	background: rgba(0, 10, 30, 0.4) !important;
	border: 1px solid rgba(100, 180, 255, 0.2);
	border-radius: 10px;
	color: #ffffff !important;
}

.login-theme-a .login-page__input::placeholder
{
	color: rgba(200, 220, 255, 0.45);
}

.login-theme-a .login-page__input:focus
{
	border-color: rgba(0, 200, 255, 0.5);
	box-shadow: 0 0 16px rgba(0, 200, 255, 0.12);
}

.login-theme-a .login-page__password-toggle
{
	color: rgba(150, 210, 255, 0.6);
}

.login-theme-a .login-page__captcha-img
{
	border: 1px solid rgba(100, 180, 255, 0.2);
	background: rgba(255, 255, 255, 0.9);
}

.login-theme-a .login-page__captcha-refresh
{
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(100, 180, 255, 0.15);
	color: rgba(150, 210, 255, 0.6);
}

.login-theme-a .login-page__captcha-refresh:hover
{
	background: rgba(0, 200, 255, 0.12);
	border-color: rgba(0, 200, 255, 0.4);
	color: #00c8ff;
}

.login-theme-a .login-page__submit
{
	background: linear-gradient(135deg, #00c8ff 0%, #0080ff 50%, #6c5ce7 100%);
	color: #ffffff;
	border-radius: 10px;
	animation: pulseGlowA 3s ease-in-out infinite;
}

.login-theme-a .login-page__submit:hover
{
	box-shadow: 0 0 30px rgba(0, 200, 255, 0.4);
	transform: translateY(-1px);
}

@keyframes pulseGlowA
{
	0%, 100% { box-shadow: 0 0 15px rgba(0, 200, 255, 0.15); }
	50%      { box-shadow: 0 0 25px rgba(0, 200, 255, 0.3); }
}

.login-theme-a .login-page__version
{
	color: rgba(150, 210, 255, 0.4);
}

.login-theme-a .login-page__captcha-error
{
	color: #ff6b6b;
}


/* ===================================================================
   THEME B - DARK TECH SPLIT
   =================================================================== */

.login-theme-b .login-page__overlay
{
	background: none;
}

.login-theme-b .login-page__form-wrap
{
	justify-content: flex-end;
}

.login-theme-b .login-page__card
{
	max-width: 440px;
	margin-right: 2%;
	background: rgba(8, 12, 28, 0.85);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-radius: 2px;
	border-left: 3px solid #00e5ff;
	box-shadow:
		-20px 0 60px rgba(0, 0, 0, 0.3),
		inset 0 0 80px rgba(0, 229, 255, 0.02);
	position: relative;
	overflow: hidden;
}

.login-theme-b .login-page__card::before
{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.03;
	background-image:
		linear-gradient(rgba(0, 229, 255, 0.3) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 229, 255, 0.3) 1px, transparent 1px);
	background-size: 30px 30px;
	pointer-events: none;
}

.login-theme-b .login-page__title
{
	color: #00e5ff;
	font-family: 'Orbitron', sans-serif;
	font-weight: 600;
	font-size: 1.1rem;
	letter-spacing: 0.15em;
	text-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
}

.login-theme-b .login-page__slogan
{
	color: rgba(0, 229, 255, 0.55);
	font-family: 'Rajdhani', sans-serif;
	letter-spacing: 0.1em;
}

.login-theme-b .login-page__alert
{
	background: rgba(255, 180, 0, 0.1);
	border: 1px solid rgba(255, 180, 0, 0.25);
	color: #ffc857;
	border-radius: 0;
}

.login-theme-b .login-page__label
{
	color: rgba(0, 229, 255, 0.7);
	font-family: 'Rajdhani', sans-serif;
	font-size: 0.75rem;
	letter-spacing: 0.15em;
}

.login-theme-b .login-page__input
{
	background: rgba(0, 5, 15, 0.3) !important;
	border: none;
	border-bottom: 1px solid rgba(0, 229, 255, 0.25);
	border-radius: 0;
	color: #ffffff !important;
	padding: 0.65rem 0.2rem;
}

.login-theme-b .login-page__input::placeholder
{
	color: rgba(180, 230, 255, 0.4);
}

.login-theme-b .login-page__input:focus
{
	border-bottom-color: #00e5ff;
	box-shadow: 0 2px 8px rgba(0, 229, 255, 0.1);
}

.login-theme-b .login-page__password-toggle
{
	color: rgba(0, 229, 255, 0.5);
}

.login-theme-b .login-page__captcha-img
{
	border: 1px solid rgba(0, 229, 255, 0.15);
	background: rgba(255, 255, 255, 0.92);
	border-radius: 0;
}

.login-theme-b .login-page__captcha-refresh
{
	background: transparent;
	border: 1px solid rgba(0, 229, 255, 0.2);
	border-radius: 0;
	color: rgba(0, 229, 255, 0.5);
}

.login-theme-b .login-page__captcha-refresh:hover
{
	border-color: #00e5ff;
	color: #00e5ff;
}

.login-theme-b .login-page__submit
{
	background: transparent;
	border: 2px solid #00e5ff;
	color: #00e5ff;
	border-radius: 0;
	font-family: 'Orbitron', sans-serif;
	font-size: 0.85rem;
	letter-spacing: 0.2em;
	position: relative;
	overflow: hidden;
}

.login-theme-b .login-page__submit::before
{
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.15), transparent);
	transition: left 0.5s;
}

.login-theme-b .login-page__submit:hover::before
{
	left: 100%;
}

.login-theme-b .login-page__submit:hover
{
	background: rgba(0, 229, 255, 0.08);
	box-shadow: 0 0 30px rgba(0, 229, 255, 0.2);
}

.login-theme-b .login-page__version
{
	color: rgba(0, 229, 255, 0.25);
	font-family: 'Space Mono', monospace;
	font-size: 0.7rem;
	letter-spacing: 0.1em;
}

.login-theme-b .login-page__captcha-error
{
	color: #ff6b6b;
}

@media (max-width: 768px)
{
	.login-theme-b .login-page__form-wrap
	{
		justify-content: center;
	}
	.login-theme-b .login-page__card
	{
		margin-right: 0;
	}
}


/* ===================================================================
   THEME C - FULL-HEIGHT SIDE PANEL
   =================================================================== */

.login-theme-c .login-page__overlay
{
	background: none;
}

.login-theme-c .login-page__form-wrap
{
	justify-content: flex-end;
	align-items: stretch;
}

.login-theme-c .login-page__card
{
	max-width: none;
	width: 30%;
	margin-right: 0;
	border-radius: 0;
	background: rgba(30, 25, 60, 0.4);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	border: none;
	border-left: 1px solid rgba(170, 150, 255, 0.15);
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 3rem 2.5rem;
	box-shadow: -12px 0 40px rgba(0, 0, 0, 0.2);
	position: relative;
	overflow: hidden;
}

.login-theme-c .login-page__card::before
{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 100%;
	background: linear-gradient(
		180deg,
		transparent 0%,
		rgba(180, 160, 255, 0.35) 30%,
		rgba(200, 150, 255, 0.45) 50%,
		rgba(180, 160, 255, 0.35) 70%,
		transparent 100%
	);
}

.login-theme-c .login-page__logo
{
	margin-bottom: 1.5rem;
}

.login-theme-c .login-page__title
{
	color: #d4c6ff;
	font-family: 'Rajdhani', sans-serif;
	font-weight: 600;
	font-size: 1.3rem;
	text-shadow: 0 0 18px rgba(180, 160, 255, 0.2);
}

.login-theme-c .login-page__slogan
{
	color: rgba(210, 195, 255, 0.65);
}

.login-theme-c .login-page__alert
{
	background: rgba(255, 180, 0, 0.12);
	border: 1px solid rgba(255, 180, 0, 0.3);
	color: #ffc857;
	border-radius: 8px;
}

.login-theme-c .login-page__label
{
	color: rgba(210, 200, 255, 0.85);
	font-family: 'Rajdhani', sans-serif;
}

.login-theme-c .login-page__input
{
	background: rgba(20, 15, 45, 0.35) !important;
	border: 1px solid rgba(180, 160, 255, 0.18);
	border-radius: 8px;
	color: #ffffff !important;
	padding: 0.7rem 1rem;
}

.login-theme-c .login-page__input::placeholder
{
	color: rgba(220, 210, 255, 0.45);
}

.login-theme-c .login-page__input:focus
{
	border-color: rgba(180, 160, 255, 0.5);
	box-shadow: 0 0 16px rgba(180, 160, 255, 0.12);
}

.login-theme-c .login-page__password-toggle
{
	color: rgba(210, 195, 255, 0.6);
}

.login-theme-c .login-page__captcha-img
{
	border: 1px solid rgba(180, 160, 255, 0.18);
	background: rgba(255, 255, 255, 0.9);
	border-radius: 8px;
}

.login-theme-c .login-page__captcha-refresh
{
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(180, 160, 255, 0.15);
	border-radius: 8px;
	color: rgba(210, 195, 255, 0.6);
}

.login-theme-c .login-page__captcha-refresh:hover
{
	border-color: rgba(180, 160, 255, 0.45);
	color: #c4b5fd;
}

.login-theme-c .login-page__submit
{
	background: linear-gradient(135deg, #9b7aed 0%, #c4b5fd 50%, #8b6cef 100%);
	color: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(160, 130, 255, 0.25);
}

.login-theme-c .login-page__submit:hover
{
	transform: translateY(-2px);
	box-shadow: 0 6px 30px rgba(160, 130, 255, 0.4);
}

.login-theme-c .login-page__version
{
	color: rgba(210, 195, 255, 0.35);
}

.login-theme-c .login-page__captcha-error
{
	color: #ff6b6b;
}

@media (max-width: 768px)
{
	.login-theme-c .login-page__form-wrap
	{
		align-items: center;
		justify-content: center;
	}
	.login-theme-c .login-page__card
	{
		width: 100%;
		max-width: 100%;
		border-left: none;
		border-radius: 0;
		padding: 2rem 1.5rem;
	}
}


/* ===================================================================
   THEME D - ASYMMETRIC BLADE
   =================================================================== */

.login-theme-d .login-page__overlay
{
	background: none;
}

.login-theme-d .login-page__form-wrap
{
	justify-content: flex-end;
}

.login-theme-d .login-page__card
{
	max-width: 430px;
	margin-right: 3%;
	background: rgba(12, 12, 30, 0.5);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	border-radius: 0;
	clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
	padding: 2.5rem 2.5rem 2.5rem 3.5rem;
	position: relative;
}

.login-theme-d .login-page__card::before
{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	clip-path: polygon(12% 0, 12.3% 0, 0.3% 100%, 0% 100%);
	background: linear-gradient(180deg, #00c8ff, #a855f7, #00c8ff);
	background-size: 100% 200%;
	animation: holoShift 4s ease infinite;
}

@keyframes holoShift
{
	0%, 100% { background-position: 0% 0%; }
	50%      { background-position: 0% 100%; }
}

.login-theme-d .login-page__title
{
	color: #c4a0ff;
	font-family: 'Orbitron', sans-serif;
	font-weight: 700;
	font-size: 1.2rem;
	letter-spacing: 0.1em;
	text-shadow: 0 0 18px rgba(168, 85, 247, 0.2);
}

.login-theme-d .login-page__slogan
{
	color: rgba(200, 180, 255, 0.55);
	font-family: 'Rajdhani', sans-serif;
	letter-spacing: 0.05em;
}

.login-theme-d .login-page__alert
{
	background: rgba(255, 180, 0, 0.1);
	border: 1px solid rgba(255, 180, 0, 0.3);
	color: #ffc857;
	border-radius: 0;
}

.login-theme-d .login-page__label
{
	color: rgba(200, 200, 255, 0.6);
	font-family: 'Orbitron', sans-serif;
	font-size: 0.65rem;
	letter-spacing: 0.2em;
}

.login-theme-d .login-page__input
{
	background: rgba(5, 5, 20, 0.4) !important;
	border: 1px solid rgba(200, 200, 255, 0.12);
	border-radius: 0;
	color: #ffffff !important;
}

.login-theme-d .login-page__input::placeholder
{
	color: rgba(220, 220, 255, 0.4);
}

.login-theme-d .login-page__input:focus
{
	border-color: #a855f7;
	box-shadow: 0 0 12px rgba(168, 85, 247, 0.15);
}

.login-theme-d .login-page__password-toggle
{
	color: rgba(200, 200, 255, 0.4);
}

.login-theme-d .login-page__captcha-img
{
	border: 1px solid rgba(200, 200, 255, 0.1);
	background: rgba(255, 255, 255, 0.92);
	border-radius: 0;
}

.login-theme-d .login-page__captcha-refresh
{
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(200, 200, 255, 0.1);
	border-radius: 0;
	color: rgba(200, 200, 255, 0.4);
}

.login-theme-d .login-page__captcha-refresh:hover
{
	border-color: #a855f7;
	color: #a855f7;
}

.login-theme-d .login-page__submit
{
	background: linear-gradient(135deg, #00c8ff, #a855f7);
	color: #ffffff;
	border-radius: 0;
	font-family: 'Orbitron', sans-serif;
	font-size: 0.8rem;
	letter-spacing: 0.2em;
}

.login-theme-d .login-page__submit:hover
{
	box-shadow: 0 0 35px rgba(168, 85, 247, 0.35);
	transform: translateY(-1px);
}

.login-theme-d .login-page__version
{
	color: rgba(220, 220, 255, 0.62);
	font-family: 'Space Mono', monospace;
	font-size: 0.7rem;
	opacity: 1;
}

.login-theme-d .login-page__captcha-error
{
	color: #ff6b6b;
}

@media (max-width: 768px)
{
	.login-theme-d .login-page__form-wrap
	{
		justify-content: center;
	}
	.login-theme-d .login-page__card
	{
		clip-path: none;
		padding: 2rem;
		margin-right: 0;
	}
	.login-theme-d .login-page__card::before
	{
		display: none;
	}
}


/* ===================================================================
   THEME E - BOTTOM HUD BAR
   =================================================================== */

.login-theme-e .login-page__overlay
{
	background: none;
}

.login-theme-e .login-page__form-wrap
{
	justify-content: center;
	align-items: flex-end;
}

.login-theme-e .login-page__card
{
	max-width: 700px;
	width: 94%;
	margin-right: 0;
	margin-bottom: 3rem;
	border-radius: 16px 16px 16px 16px;
	background: linear-gradient(
		180deg,
		rgba(20, 25, 40, 0.5) 0%,
		rgba(15, 20, 35, 0.55) 100%
	);
	backdrop-filter: blur(28px);
	-webkit-backdrop-filter: blur(28px);
	border: 1px solid rgba(180, 200, 220, 0.1);
	box-shadow:
		0 -4px 30px rgba(0, 0, 0, 0.15),
		inset 0 1px 0 rgba(255, 255, 255, 0.06);
	padding: 2rem 2.5rem;
	position: relative;
}

.login-theme-e .login-page__card::before
{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent 0%,
		rgba(180, 200, 230, 0.15) 15%,
		rgba(200, 220, 240, 0.3) 50%,
		rgba(180, 200, 230, 0.15) 85%,
		transparent 100%
	);
}

.login-theme-e .login-page__logo
{
	margin-bottom: 0.5rem;
}

.login-theme-e .login-page__logo img
{
	max-width: 140px;
}

.login-theme-e .login-page__title
{
	color: #8cb8d8;
	font-family: 'Rajdhani', sans-serif;
	font-weight: 600;
	font-size: 1.1rem;
	letter-spacing: 0.04em;
	margin-bottom: 0.1rem;
}

.login-theme-e .login-page__slogan
{
	color: rgba(160, 195, 225, 0.6);
	font-family: 'Rajdhani', sans-serif;
	margin-bottom: 1rem;
	font-size: 0.8rem;
}

.login-theme-e form
{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem 1.5rem;
}

.login-theme-e form .login-page__field:nth-child(2)
{
	grid-column: 1;
	grid-row: 1;
}

.login-theme-e form .login-page__field:nth-child(3)
{
	grid-column: 1;
	grid-row: 2;
	margin-bottom: 0;
}

.login-theme-e form .login-page__field:nth-child(4)
{
	grid-column: 2;
	grid-row: 1;
}

.login-theme-e .login-page__submit
{
	grid-column: 2;
	grid-row: 2;
	align-self: end;
	margin-top: 0;
	margin-bottom: 0;
	padding: 0.6rem 0.9rem;
	font-size: 0.9rem;
	border: 1px solid transparent;
	border-radius: 8px;
}

.login-theme-e .login-page__alert
{
	background: rgba(255, 180, 0, 0.1);
	border: 1px solid rgba(255, 180, 0, 0.25);
	color: #ffc857;
	border-radius: 8px;
}

.login-theme-e .login-page__label
{
	color: rgba(180, 200, 225, 0.7);
	font-family: 'Rajdhani', sans-serif;
	font-size: 0.75rem;
	letter-spacing: 0.06em;
}

.login-theme-e .login-page__input
{
	background: rgba(10, 15, 25, 0.4) !important;
	border: 1px solid rgba(180, 200, 220, 0.15);
	border-radius: 8px;
	color: #ffffff !important;
	padding: 0.6rem 0.9rem;
}

.login-theme-e .login-page__input::placeholder
{
	color: rgba(200, 215, 230, 0.4);
}

.login-theme-e .login-page__input:focus
{
	border-color: rgba(140, 180, 220, 0.4);
	box-shadow: 0 0 12px rgba(140, 180, 220, 0.08);
}

.login-theme-e .login-page__password-toggle
{
	color: rgba(180, 200, 220, 0.45);
}

.login-theme-e .login-page__captcha-img
{
	border: 1px solid rgba(180, 200, 220, 0.12);
	background: rgba(255, 255, 255, 0.9);
	border-radius: 8px;
}

.login-theme-e .login-page__captcha-refresh
{
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(180, 200, 220, 0.12);
	border-radius: 8px;
	color: rgba(180, 200, 220, 0.45);
}

.login-theme-e .login-page__captcha-refresh:hover
{
	border-color: rgba(140, 180, 220, 0.4);
	color: #b0c8e0;
}

.login-theme-e .login-page__submit
{
	background: linear-gradient(
		135deg,
		rgba(60, 80, 110, 0.8) 0%,
		rgba(40, 55, 80, 0.9) 50%,
		rgba(60, 80, 110, 0.8) 100%
	);
	border: 1px solid rgba(180, 200, 230, 0.15);
	color: #e0eaf2;
	border-radius: 8px;
	font-family: 'Rajdhani', sans-serif;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	box-shadow:
		0 2px 12px rgba(0, 0, 0, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.login-theme-e .login-page__submit:hover
{
	border-color: rgba(180, 200, 230, 0.3);
	box-shadow:
		0 4px 20px rgba(0, 0, 0, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.08);
	transform: translateY(-1px);
}

.login-theme-e .login-page__version
{
	color: rgba(180, 200, 220, 0.25);
	grid-column: 1 / -1;
	margin-top: 0.5rem;
}

.login-theme-e .login-page__captcha-error
{
	color: #ff6b6b;
}

@media (max-width: 768px)
{
	.login-theme-e .login-page__form-wrap
	{
		align-items: center;
		justify-content: center;
	}
	.login-theme-e .login-page__card
	{
		max-width: 100%;
		margin-bottom: 0;
		border-radius: 0;
	}
	.login-theme-e form
	{
		grid-template-columns: 1fr;
	}
	.login-theme-e form .login-page__field:nth-child(2),
	.login-theme-e form .login-page__field:nth-child(3),
	.login-theme-e form .login-page__field:nth-child(4)
	{
		grid-column: 1;
		grid-row: auto;
	}
	.login-theme-e .login-page__submit
	{
		grid-column: 1;
		grid-row: auto;
	}
	.login-theme-e .login-page__version
	{
		grid-column: 1;
	}
}


/* ===================================================================
   THEME F - WAVE SIDE PANEL
   =================================================================== */

.login-theme-f .login-page__overlay
{
	background: none;
}

.login-theme-f .login-page__form-wrap
{
	justify-content: flex-end;
	align-items: stretch;
}

.login-theme-f .login-page__card
{
	max-width: none;
	width: 32%;
	margin-right: 0;
	border-radius: 0;
	background: linear-gradient(
		160deg,
		rgba(0, 50, 90, 0.5) 0%,
		rgba(0, 35, 70, 0.48) 50%,
		rgba(0, 55, 95, 0.5) 100%
	);
	backdrop-filter: blur(28px);
	-webkit-backdrop-filter: blur(28px);
	border: none;
	clip-path: url(#waveClip);
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 3rem 2.5rem 3rem 4.5rem;
	box-shadow: -10px 0 40px rgba(0, 30, 60, 0.2);
	position: relative;
}

.login-theme-f .login-page__logo img
{
	filter: drop-shadow(0 2px 8px rgba(0, 120, 200, 0.2));
}

.login-theme-f .login-page__title
{
	color: #5cc8ff;
	font-family: 'Rajdhani', sans-serif;
	font-weight: 600;
	font-size: 1.3rem;
	letter-spacing: 0.03em;
	text-shadow: 0 0 18px rgba(0, 150, 220, 0.15);
}

.login-theme-f .login-page__slogan
{
	color: rgba(130, 200, 240, 0.6);
	font-family: 'Rajdhani', sans-serif;
}

.login-theme-f .login-page__alert
{
	background: rgba(255, 180, 0, 0.1);
	border: 1px solid rgba(255, 180, 0, 0.25);
	color: #ffc857;
	border-radius: 10px;
}

.login-theme-f .login-page__label
{
	color: rgba(160, 215, 255, 0.75);
	font-family: 'Rajdhani', sans-serif;
	font-size: 0.8rem;
	letter-spacing: 0.06em;
}

.login-theme-f .login-page__input
{
	background: rgba(0, 20, 45, 0.4) !important;
	border: 1px solid rgba(100, 190, 255, 0.18);
	border-radius: 10px;
	color: #ffffff !important;
	padding: 0.7rem 1rem;
}

.login-theme-f .login-page__input::placeholder
{
	color: rgba(160, 210, 255, 0.35);
}

.login-theme-f .login-page__input:focus
{
	border-color: rgba(60, 180, 255, 0.45);
	box-shadow: 0 0 16px rgba(60, 180, 255, 0.1);
}

.login-theme-f .login-page__password-toggle
{
	color: rgba(140, 200, 255, 0.5);
}

.login-theme-f .login-page__captcha-img
{
	border: 1px solid rgba(100, 190, 255, 0.14);
	background: rgba(255, 255, 255, 0.9);
	border-radius: 10px;
}

.login-theme-f .login-page__captcha-refresh
{
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(100, 190, 255, 0.14);
	border-radius: 10px;
	color: rgba(140, 200, 255, 0.5);
}

.login-theme-f .login-page__captcha-refresh:hover
{
	border-color: rgba(60, 180, 255, 0.45);
	color: #5cc8ff;
}

.login-theme-f .login-page__submit
{
	background: linear-gradient(
		135deg,
		rgba(0, 140, 210, 0.85) 0%,
		rgba(0, 180, 230, 0.9) 50%,
		rgba(0, 150, 220, 0.85) 100%
	);
	color: #ffffff;
	border: none;
	border-radius: 10px;
	font-family: 'Rajdhani', sans-serif;
	font-size: 1.05rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	box-shadow:
		0 4px 18px rgba(0, 140, 220, 0.25),
		inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.login-theme-f .login-page__submit:hover
{
	box-shadow:
		0 6px 28px rgba(0, 140, 220, 0.4),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
	transform: translateY(-1px);
}

.login-theme-f .login-page__version
{
	color: rgba(140, 200, 255, 0.25);
}

.login-theme-f .login-page__captcha-error
{
	color: #ff6b6b;
}

@media (max-width: 768px)
{
	.login-theme-f .login-page__form-wrap
	{
		align-items: center;
		justify-content: center;
	}
	.login-theme-f .login-page__card
	{
		width: 100%;
		max-width: 100%;
		clip-path: none;
		border-radius: 0;
		padding: 2rem 1.5rem;
	}
}
