/* Parking software portal — operations login */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
	--portal-bg: #070d18;
	--portal-surface: #ffffff;
	--portal-ink: #0f172a;
	--portal-muted: #64748b;
	--portal-line: #e2e8f0;
	--portal-accent: #0f766e;
	--portal-accent-hover: #0d9488;
	--portal-accent-soft: rgba(15, 118, 110, 0.12);
	--portal-amber: #f5c518;
	--portal-font: 'Manrope', "Segoe UI", system-ui, sans-serif;
}

body.login-page.main-body {
	margin: 0 !important;
	padding: 0 !important;
	min-height: 100vh;
	height: auto;
	font-family: var(--portal-font);
	color: var(--portal-ink);
	background: #070d18;
	overflow-x: hidden;
	overflow-y: auto;
}

body.login-page #global-loader {
	background: #070d18;
}

.login-portal {
	position: relative;
	min-height: 100vh;
	display: grid;
	grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
	isolation: isolate;
	overflow: hidden;
	background:
		radial-gradient(ellipse 80% 55% at 8% 0%, rgba(45, 212, 191, 0.22), transparent 50%),
		radial-gradient(ellipse 55% 45% at 92% 100%, rgba(15, 118, 110, 0.38), transparent 48%),
		linear-gradient(160deg, #070d18 0%, #0c1a24 42%, #0f3d3a 100%);
}

.login-portal::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
	background-size: 48px 48px;
	opacity: 0.55;
	mask-image: radial-gradient(ellipse 85% 80% at 38% 42%, #000 12%, transparent 78%);
	pointer-events: none;
}

.login-portal::after {
	content: '';
	position: absolute;
	inset: auto 0 0 0;
	height: 42%;
	background:
		repeating-linear-gradient(
			90deg,
			transparent 0 26px,
			rgba(245, 197, 24, 0.07) 26px 27px,
			transparent 27px 52px
		);
	mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.45), transparent 70%);
	pointer-events: none;
	z-index: 0;
}

.login-glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(8px);
	pointer-events: none;
	z-index: 0;
}

.login-glow-a {
	width: 220px;
	height: 220px;
	top: 8%;
	left: 38%;
	background: rgba(45, 212, 191, 0.14);
	animation: login-float 10s ease-in-out infinite;
}

.login-glow-b {
	width: 140px;
	height: 140px;
	bottom: 18%;
	left: 10%;
	background: rgba(245, 197, 24, 0.1);
	animation: login-float 12s ease-in-out 0.6s infinite reverse;
}

.login-glow-c {
	width: 180px;
	height: 180px;
	top: 16%;
	right: 8%;
	background: rgba(45, 212, 191, 0.1);
	animation: login-float 11s ease-in-out 0.3s infinite reverse;
}

/* —— Hero —— */
.login-hero {
	position: relative;
	z-index: 1;
	padding: 44px 56px 36px;
	display: flex;
	flex-direction: column;
	color: #f8fafc;
}

.login-hero-brand {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	animation: login-rise 0.55s ease both;
}

.login-p-badge {
	width: 50px;
	height: 50px;
	border-radius: 14px;
	background: linear-gradient(160deg, #14b8a6 0%, #0f766e 58%, #115e59 100%);
	border: 1px solid rgba(255, 255, 255, 0.22);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 1.35rem;
	letter-spacing: 0.02em;
	color: #fff;
	box-shadow: 0 10px 24px rgba(15, 118, 110, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.login-hero-brand strong {
	display: block;
	font-size: 1.08rem;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.login-hero-brand small {
	display: block;
	margin-top: 3px;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #99f6e4;
}

.login-hero-copy {
	max-width: 520px;
	padding: 28px 0 18px;
	animation: login-rise 0.6s ease 0.06s both;
}

.login-hero-copy .eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 14px;
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.14);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #ccfbf1;
}

.login-hero-copy .eyebrow i {
	font-size: 13px;
	color: #5eead4;
}

.login-hero-copy h1 {
	margin: 0 0 14px;
	font-size: clamp(2.05rem, 3.5vw, 2.9rem);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.035em;
	color: #fff;
}

.login-hero-copy h1 span {
	display: block;
	background: linear-gradient(90deg, #fff 8%, #99f6e4 55%, #fde68a 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.login-hero-copy p {
	margin: 0;
	font-size: 1.02rem;
	line-height: 1.65;
	color: rgba(248, 250, 252, 0.78);
	max-width: 42ch;
}

/* —— Operations board —— */
.login-ops {
	margin-top: auto;
	animation: login-rise 0.65s ease 0.12s both;
}

.login-ops-kpis {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	margin-bottom: 14px;
	max-width: 540px;
}

.login-kpi {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 12px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(10px);
}

.login-kpi i {
	width: 34px;
	height: 34px;
	border-radius: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(45, 212, 191, 0.16);
	color: #5eead4;
	font-size: 16px;
	flex-shrink: 0;
}

.login-kpi strong {
	display: block;
	font-size: 0.84rem;
	font-weight: 800;
	letter-spacing: -0.01em;
}

.login-kpi small {
	display: block;
	margin-top: 1px;
	font-size: 0.68rem;
	font-weight: 600;
	color: rgba(248, 250, 252, 0.62);
}

.login-yard {
	max-width: 540px;
	padding: 14px;
	border-radius: 18px;
	background:
		linear-gradient(180deg, rgba(15, 23, 42, 0.35), rgba(15, 23, 42, 0.55)),
		repeating-linear-gradient(
			90deg,
			#1a2333 0 18px,
			#161e2c 18px 36px
		);
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.login-yard-head {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
	font-size: 0.75rem;
	font-weight: 700;
	color: rgba(248, 250, 252, 0.78);
}

.login-yard-sign {
	width: 22px;
	height: 22px;
	border-radius: 6px;
	background: #0f766e;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.72rem;
	font-weight: 800;
	color: #fff;
}

.login-live {
	margin-left: auto;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #6ee7b7;
	font-size: 0.7rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.login-live span {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #34d399;
	box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.2);
	animation: login-pulse 1.8s ease-in-out infinite;
}

.login-bays {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 8px;
}

.login-bay {
	position: relative;
	height: 86px;
	border-radius: 8px;
	background: rgba(8, 12, 20, 0.55);
	border: 1.5px dashed rgba(245, 197, 24, 0.55);
	display: flex;
	align-items: flex-end;
	justify-content: center;
	overflow: hidden;
}

.login-bay em {
	position: relative;
	z-index: 1;
	margin-bottom: 6px;
	font-style: normal;
	font-size: 0.62rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	color: rgba(253, 230, 138, 0.85);
}

.login-bay.is-open {
	border-style: solid;
	border-color: rgba(52, 211, 153, 0.45);
	box-shadow: inset 0 0 0 1px rgba(52, 211, 153, 0.08);
}

.login-bay.is-open::after {
	content: '';
	position: absolute;
	inset: 10px 8px 22px;
	border-radius: 6px;
	border: 1px dashed rgba(52, 211, 153, 0.28);
}

.login-car {
	position: absolute;
	top: 12px;
	left: 50%;
	width: 28px;
	height: 48px;
	transform: translateX(-50%);
	border-radius: 8px 8px 6px 6px;
	background: linear-gradient(180deg, #94a3b8 0%, #475569 100%);
	box-shadow: 0 6px 10px rgba(0, 0, 0, 0.28);
}

.login-car::before,
.login-car::after {
	content: '';
	position: absolute;
	left: 4px;
	right: 4px;
	height: 10px;
	border-radius: 3px;
	background: rgba(15, 23, 42, 0.35);
}

.login-car::before { top: 7px; }
.login-car::after { bottom: 8px; }

.login-car.is-teal {
	background: linear-gradient(180deg, #5eead4 0%, #0f766e 100%);
}

.login-car.is-amber {
	background: linear-gradient(180deg, #fde68a 0%, #d97706 100%);
}

.login-lane {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px dashed rgba(245, 197, 24, 0.28);
}

.login-barrier {
	position: relative;
	width: 54px;
	height: 22px;
	flex-shrink: 0;
}

.login-post {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 10px;
	height: 22px;
	border-radius: 3px;
	background: linear-gradient(180deg, #e2e8f0, #64748b);
}

.login-boom {
	position: absolute;
	left: 10px;
	bottom: 14px;
	width: 42px;
	height: 6px;
	border-radius: 3px;
	background: repeating-linear-gradient(
		90deg,
		#f8fafc 0 8px,
		#ef4444 8px 16px
	);
	transform-origin: left center;
	animation: login-boom 4.5s ease-in-out infinite;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.login-lane-copy {
	font-size: 0.75rem;
	font-weight: 700;
	color: rgba(248, 250, 252, 0.72);
}

.login-plate {
	margin-left: auto;
	padding: 4px 8px;
	border-radius: 5px;
	background: #f8fafc;
	color: #0f172a;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	border: 1px solid #cbd5e1;
	box-shadow: inset 0 -2px 0 #e2e8f0;
}

.login-hero-foot {
	margin-top: 18px;
	font-size: 0.82rem;
	font-weight: 600;
	color: rgba(248, 250, 252, 0.62);
	display: flex;
	align-items: center;
	gap: 10px;
	animation: login-rise 0.65s ease 0.18s both;
}

.login-hero-foot .dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #34d399;
	box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.2);
}

/* —— Form side —— */
.login-side {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 36px;
	background:
		radial-gradient(ellipse 70% 55% at 70% 42%, rgba(45, 212, 191, 0.18), transparent 62%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
	border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.login-side::before {
	content: '';
	position: absolute;
	width: 320px;
	height: 320px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(20, 184, 166, 0.28), transparent 68%);
	filter: blur(8px);
	pointer-events: none;
}

.login-card {
	width: 100%;
	max-width: 428px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(10, 18, 32, 0.78) 42%, rgba(8, 16, 28, 0.86) 100%);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 28px;
	box-shadow:
		0 0 0 1px rgba(45, 212, 191, 0.08),
		0 8px 24px rgba(2, 8, 23, 0.22),
		0 30px 70px rgba(2, 8, 23, 0.42);
	padding: 22px 28px 22px;
	position: relative;
	overflow: hidden;
	backdrop-filter: blur(22px);
	animation: login-rise 0.55s ease 0.08s both;
	color: #f8fafc;
}

.login-card::before {
	content: '';
	position: absolute;
	inset: 0 auto auto 0;
	width: 100%;
	height: 7px;
	background: linear-gradient(90deg, #14b8a6 0%, #0f766e 42%, #f5c518 100%);
}

.login-card::after {
	content: '';
	position: absolute;
	inset: auto 18px 0 18px;
	height: 10px;
	background:
		radial-gradient(circle at 10px 10px, #0b1220 6px, transparent 7px) 0 0 / 20px 10px repeat-x;
	opacity: 0.08;
	pointer-events: none;
}

.login-card-sheen {
	position: absolute;
	top: -40%;
	left: -20%;
	width: 70%;
	height: 80%;
	background: linear-gradient(120deg, rgba(255, 255, 255, 0.16), transparent 58%);
	transform: rotate(18deg);
	pointer-events: none;
}

.login-card-top {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 8px 0 18px;
	position: relative;
	z-index: 1;
}

.login-card-p {
	width: 52px;
	height: 52px;
	border-radius: 16px;
	background: linear-gradient(160deg, #2dd4bf 0%, #0f766e 58%, #115e59 100%);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 1.35rem;
	letter-spacing: 0.02em;
	box-shadow: 0 10px 22px rgba(15, 118, 110, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.28);
	flex-shrink: 0;
}

.login-card-pass {
	min-width: 0;
	flex: 1;
}

.login-card-pass span {
	display: block;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #99f6e4;
}

.login-card-pass small {
	display: block;
	margin-top: 2px;
	font-size: 0.76rem;
	font-weight: 600;
	color: rgba(248, 250, 252, 0.62);
}

.login-card-live {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(16, 185, 129, 0.14);
	border: 1px solid rgba(52, 211, 153, 0.35);
	color: #6ee7b7;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	white-space: nowrap;
}

.login-card-live span {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #10b981;
	box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.18);
	animation: login-pulse 1.8s ease-in-out infinite;
}

.login-card-header {
	margin-bottom: 20px;
	position: relative;
	z-index: 1;
}

.login-card-header h2 {
	margin: 0 0 6px;
	font-size: 1.7rem;
	font-weight: 800;
	letter-spacing: -0.04em;
	color: #fff;
}

.login-card-header p {
	margin: 0;
	font-size: 0.92rem;
	color: rgba(248, 250, 252, 0.7);
	line-height: 1.55;
	font-weight: 500;
}

.login-form .form-group {
	margin-bottom: 15px;
}

.login-form label {
	display: block;
	font-size: 0.76rem;
	font-weight: 800;
	color: #99f6e4;
	margin-bottom: 7px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.login-input {
	position: relative;
}

.login-input-ico {
	position: absolute;
	left: 8px;
	top: 50%;
	transform: translateY(-50%);
	width: 34px;
	height: 34px;
	border-radius: 10px;
	background: rgba(45, 212, 191, 0.16);
	color: #5eead4;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
	z-index: 1;
}

.login-input-ico i {
	font-size: 15px;
}

.login-input:focus-within .login-input-ico {
	background: #0f766e;
	color: #fff;
	box-shadow: 0 6px 14px rgba(15, 118, 110, 0.28);
}

.login-toggle-pass {
	position: absolute;
	right: 6px;
	top: 50%;
	transform: translateY(-50%);
	width: 36px;
	height: 36px;
	border: 0;
	background: transparent;
	color: #94a3b8;
	border-radius: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 2;
}

.login-toggle-pass:hover,
.login-toggle-pass:focus {
	color: #5eead4;
	background: rgba(45, 212, 191, 0.12);
	outline: none;
}

.login-form .form-control {
	height: 52px;
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: rgba(8, 15, 28, 0.55);
	padding: 10px 14px 10px 50px;
	font-size: 0.96rem;
	font-weight: 500;
	color: #f8fafc;
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.18);
	transition: border-color 0.16s ease, background 0.16s ease, box-shadow 0.16s ease;
}

.login-form .form-control:hover {
	border-color: rgba(94, 234, 212, 0.4);
	background: rgba(8, 15, 28, 0.7);
}

.login-form .form-control:focus {
	border-color: #2dd4bf;
	background: rgba(8, 15, 28, 0.78);
	outline: none;
	box-shadow: 0 0 0 4px rgba(45, 212, 191, 0.18), inset 0 1px 2px rgba(0, 0, 0, 0.18) !important;
}

.login-form .form-control::placeholder {
	color: #94a3b8;
	font-weight: 400;
}

#Password.form-control {
	padding-right: 44px;
}

.login-alert {
	border: 1px solid rgba(248, 113, 113, 0.4);
	border-left: 4px solid #f87171;
	background: rgba(127, 29, 29, 0.35);
	color: #fecaca;
	border-radius: 14px;
	padding: 12px 14px;
	margin-bottom: 16px;
	text-align: left;
	font-size: 0.85rem;
}

.login-alert .close {
	color: #fecaca;
	opacity: 0.75;
	text-shadow: none;
}

.login-alert ul {
	margin: 0;
	padding-left: 18px;
}

.login-captcha {
	display: grid;
	grid-template-columns: 46px minmax(70px, auto) 22px 1fr;
	align-items: center;
	gap: 8px;
	padding: 10px;
	border-radius: 16px;
	background: rgba(15, 118, 110, 0.16);
	border: 1px solid rgba(94, 234, 212, 0.28);
}

.login-captcha-refresh {
	width: 46px;
	height: 46px;
	border: 1px solid rgba(94, 234, 212, 0.32);
	border-radius: 13px;
	background: rgba(255, 255, 255, 0.08);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: #5eead4;
	transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.login-captcha-refresh:hover {
	background: rgba(45, 212, 191, 0.2);
	border-color: #5eead4;
	transform: rotate(-18deg);
}

.login-captcha-refresh i {
	font-size: 16px;
}

.login-captcha-image {
	min-height: 38px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 4px 10px;
	background: #fff;
	border-radius: 12px;
	border: 1px dashed #5eead4;
	font-weight: 700;
	color: var(--portal-ink);
	overflow: hidden;
}

.login-captcha-img {
	display: block;
	height: 30px;
	width: auto;
	border-radius: 6px;
}

.login-captcha-eq {
	text-align: center;
	font-size: 1.1rem;
	font-weight: 800;
	color: #99f6e4;
}

.login-captcha-input .form-control {
	padding-left: 12px;
	padding-right: 12px;
	text-align: center;
	font-weight: 800;
	letter-spacing: 0.08em;
	width: 100%;
	border: 1px solid rgba(94, 234, 212, 0.35);
	background: rgba(8, 15, 28, 0.55);
	border-radius: 13px;
	color: #fff;
}

.login-captcha-hint {
	display: block;
	margin: 8px 0 18px;
	font-size: 0.76rem;
	color: rgba(248, 250, 252, 0.58);
}

.login-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	height: 54px;
	border: 0;
	border-radius: 16px;
	background: linear-gradient(180deg, #2dd4bf 0%, #0f766e 100%);
	color: #fff !important;
	font-size: 1rem;
	font-weight: 800;
	letter-spacing: 0.01em;
	text-transform: none;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
	box-shadow: 0 12px 26px rgba(15, 118, 110, 0.36);
}

.login-submit::after {
	content: '';
	position: absolute;
	inset: 0 auto 0 -40%;
	width: 38%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
	transform: skewX(-18deg);
	animation: login-shine 3.4s ease-in-out infinite;
}

.login-submit i {
	font-size: 16px;
	transition: transform 0.18s ease;
}

.login-submit:hover,
.login-submit:focus,
.login-submit:active {
	background: linear-gradient(180deg, #5eead4 0%, #0d9488 100%) !important;
	color: #fff !important;
	border: 0;
	outline: none;
	filter: none;
	transform: translateY(-1px);
	box-shadow: 0 16px 30px rgba(15, 118, 110, 0.42);
}

.login-submit:hover i {
	transform: translateX(3px);
}

.login-trust {
	margin-top: 16px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	position: relative;
	z-index: 1;
}

.login-trust span {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: #99f6e4;
	font-size: 0.7rem;
	font-weight: 700;
}

.login-trust i {
	font-size: 12px;
}

@keyframes login-rise {
	from {
		opacity: 0;
		transform: translateY(16px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes login-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-16px); }
}

@keyframes login-pulse {
	0%, 100% { box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.18); }
	50% { box-shadow: 0 0 0 7px rgba(52, 211, 153, 0.08); }
}

@keyframes login-boom {
	0%, 55%, 100% { transform: rotate(0deg); }
	20%, 40% { transform: rotate(-62deg); }
}

@keyframes login-shine {
	0% { left: -40%; }
	55%, 100% { left: 120%; }
}

@media (prefers-reduced-motion: reduce) {
	.login-glow,
	.login-boom,
	.login-live span,
	.login-card-live span,
	.login-hero-brand,
	.login-hero-copy,
	.login-ops,
	.login-hero-foot,
	.login-card,
	.login-submit::after {
		animation: none;
	}
}

@media (max-width: 1080px) {
	.login-portal {
		grid-template-columns: minmax(0, 1fr) minmax(340px, 0.92fr);
	}

	.login-hero {
		padding: 36px 32px 28px;
	}

	.login-bays {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.login-portal {
		grid-template-columns: 1fr;
	}

	.login-portal::after {
		display: none;
	}

	.login-hero {
		min-height: auto;
		padding: 22px 20px 4px;
	}

	.login-hero-copy {
		padding: 14px 0 4px;
	}

	.login-hero-copy h1 {
		font-size: 1.7rem;
	}

	.login-hero-copy p {
		display: none;
	}

	.login-yard {
		display: none;
	}

	.login-ops {
		margin-top: 0;
	}

	.login-ops-kpis {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		max-width: none;
		margin-bottom: 8px;
	}

	.login-kpi small {
		display: none;
	}

	.login-hero-foot {
		display: none;
	}

	.login-glow {
		display: none;
	}

	.login-side {
		padding: 12px 16px 36px;
		align-items: flex-start;
		border-left: 0;
		background: transparent;
	}

	.login-card {
		padding: 18px 20px 18px;
		max-width: 100%;
		border-radius: 22px;
	}

	.login-card-header h2 {
		font-size: 1.45rem;
	}

	.login-trust span:last-child {
		display: none;
	}
}

@media (max-width: 600px) {
	.login-ops {
		display: none;
	}

	.login-hero-copy h1 {
		font-size: 1.45rem;
	}

	.login-hero-copy .eyebrow {
		margin-bottom: 10px;
	}
}

@media (max-width: 420px) {
	.login-captcha {
		grid-template-columns: 44px 1fr;
	}

	.login-captcha-eq {
		display: none;
	}
}
