/**
 * Lunqra Login — Frontend popup + menu profile icon.
 * Modern Airbnb & Apple UI/UX Design Language.
 */

.lunqra-sr-only {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

/* =========================================================================
   Menu Profile Item
   ========================================================================= */

.lunqra-login-menu-item {
	display: inline-flex !important;
	align-items: center;
	gap: 8px;
	list-style: none;
	margin-left: 0.35rem;
}

.nav-menu > .lunqra-login-menu-item,
.mobile-drawer__menu > .lunqra-login-menu-item,
.header-nav-links > .lunqra-login-menu-item {
	margin-left: auto;
}

.lunqra-login-menu-item > a {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 8px 16px !important;
	line-height: 1 !important;
	text-decoration: none !important;
	color: inherit;
	border-radius: 9999px;
	font-family: "Plus Jakarta Sans", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	font-size: 0.9rem;
	font-weight: 600;
	transition: background-color 0.2s ease, transform 0.15s ease;
}

.lunqra-login-menu-item > a:hover {
	background-color: rgba(0, 0, 0, 0.05);
}

.lunqra-login-profile-icon {
	display: block;
	flex: 0 0 auto;
	color: var(--ll-accent, #FF385C);
}

.lunqra-login-menu-avatar {
	width: 30px !important;
	height: 30px !important;
	border-radius: 9999px !important;
	display: block;
	object-fit: cover;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.lunqra-login-menu-label {
	font-size: 0.9rem;
	font-weight: 600;
}

.lunqra-login-logout-btn {
	border: 0;
	background: transparent;
	color: #717171;
	opacity: 0.85;
	cursor: pointer;
	font-family: "Plus Jakarta Sans", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	font-size: 0.82rem;
	font-weight: 600;
	padding: 5px 10px;
	border-radius: 6px;
	transition: all 0.2s ease;
}

.lunqra-login-logout-btn:hover {
	opacity: 1;
	color: #FF385C;
	background-color: rgba(255, 56, 92, 0.08);
}

@media (max-width: 782px) {
	.lunqra-login-menu-item .lunqra-login-menu-label {
		font-size: 0.85rem;
	}
}

.lunqra-login-fab {
	display: none !important;
}

/* =========================================================================
   Modal Shell (Glassmorphism & Depth)
   ========================================================================= */

.lunqra-login-modal {
	--ll-card: #ffffff;
	--ll-accent: #FF385C;
	--ll-text: #222222;
	--ll-muted: #717171;
	--ll-border: #EBEBEB;
	--ll-radius: 14px;
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	box-sizing: border-box;
	font-family: "Plus Jakarta Sans", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.lunqra-login-modal[hidden] {
	display: none !important;
}

.lunqra-login-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(8, 10, 15, 0.68);
	backdrop-filter: blur(12px) saturate(160%);
	-webkit-backdrop-filter: blur(12px) saturate(160%);
	border: 0;
	padding: 0;
	cursor: pointer;
	transition: opacity 0.3s ease;
}

.lunqra-login-modal__dialog {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr;
	width: min(920px, calc(100vw - 32px));
	max-height: min(660px, calc(100dvh - 32px));
	min-height: min(520px, calc(100dvh - 32px));
	background: var(--ll-card);
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 32px 90px -12px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
	animation: ll-modal-scale 320ms cubic-bezier(0.16, 1, 0.3, 1) both;
	color: var(--ll-text);
}

.lunqra-login-modal__dialog--split {
	grid-template-columns: 38% minmax(0, 1fr);
}

.lunqra-login-modal__close {
	position: absolute;
	top: 16px;
	right: 16px;
	z-index: 20;
	width: 36px;
	height: 36px;
	border: 0;
	border-radius: 50%;
	background: #f3f4f6;
	color: #6b7280;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.22s cubic-bezier(0.2, 0, 0, 1);
}

.lunqra-login-modal__close:hover {
	background: #e5e7eb;
	color: #111827;
	transform: rotate(90deg);
}

/* =========================================================================
   Left Visual Panel (Photo + Brand Aura)
   ========================================================================= */

.lunqra-login-modal__panel {
	position: relative;
	min-height: 100%;
	background: #11141c;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 24px;
	box-sizing: border-box;
}

.lunqra-login-modal__panel-media {
	position: absolute;
	inset: 0;
	background-image: var(--ll-panel-image, none);
	background-size: cover;
	background-position: center;
	transform: scale(1.03);
	transition: transform 0.8s ease;
}

.lunqra-login-modal__dialog:hover .lunqra-login-modal__panel-media {
	transform: scale(1.06);
}

.lunqra-login-modal__panel-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(12, 15, 23, 0.15) 0%, rgba(12, 15, 23, 0.85) 100%);
	pointer-events: none;
}

.lunqra-login-modal__panel-badge {
	position: relative;
	z-index: 2;
	align-self: flex-start;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.18);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.28);
	color: #ffffff;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.lunqra-login-modal__panel-badge .badge-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #10b981;
	box-shadow: 0 0 8px #10b981;
}

.lunqra-login-modal__panel-content {
	position: relative;
	z-index: 2;
	color: #ffffff;
	margin-top: auto;
}

.lunqra-login-modal__panel-brand {
	margin: 0 0 6px;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: color-mix(in srgb, var(--ll-accent) 80%, white);
}

.lunqra-login-modal__panel-title {
	margin: 0 0 8px;
	font-size: 1.35rem;
	font-weight: 800;
	line-height: 1.25;
	letter-spacing: -0.03em;
	color: #ffffff;
}

.lunqra-login-modal__panel-desc {
	margin: 0;
	font-size: 0.88rem;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.82);
}

/* =========================================================================
   Right Main Form Area
   ========================================================================= */

.lunqra-login-modal__main {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 40px 48px;
	overflow-y: auto;
	background: var(--ll-card);
	min-width: 0;
}

.lunqra-login-modal__brand {
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
}

.lunqra-login-modal__logo {
	max-width: var(--ll-logo-width, 140px);
	max-height: 48px;
	width: auto;
	height: auto;
	object-fit: contain;
}

.lunqra-login-modal__wordmark-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
}

.lunqra-login-modal__wordmark {
	font-size: 1.6rem;
	font-weight: 850;
	letter-spacing: -0.035em;
	color: var(--ll-text);
	background: linear-gradient(135deg, var(--ll-text) 0%, color-mix(in srgb, var(--ll-text) 80%, var(--ll-accent)) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.lunqra-login-modal__tagline {
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--ll-muted);
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

/* Segmented Pill Tabs */
.lunqra-segmented-tabs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	background: #f3f4f6;
	padding: 4px;
	border-radius: 999px;
	margin-bottom: 22px;
	gap: 4px;
	border: 1px solid #e5e7eb;
}

.lunqra-tab-btn {
	border: 0;
	background: transparent;
	color: #6b7280;
	font-family: inherit;
	font-size: 0.88rem;
	font-weight: 600;
	padding: 8px 16px;
	border-radius: 999px;
	cursor: pointer;
	transition: all 0.2s cubic-bezier(0.2, 0, 0, 1);
	text-align: center;
}

.lunqra-tab-btn:hover {
	color: #111827;
}

.lunqra-tab-btn.is-active {
	background: #ffffff;
	color: #111827;
	font-weight: 750;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.lunqra-login-modal__title {
	margin: 0 0 6px;
	text-align: center;
	font-size: clamp(1.2rem, 2.4vw, 1.45rem);
	line-height: 1.3;
	letter-spacing: -0.025em;
	font-weight: 800;
	color: var(--ll-text);
}

.lunqra-login-modal__desc {
	margin: 0 auto 20px;
	max-width: 36ch;
	text-align: center;
	color: var(--ll-muted);
	font-size: 0.9rem;
	line-height: 1.45;
}

.lunqra-login-modal__alert {
	margin: 0 0 16px;
	padding: 12px 16px;
	border-radius: 12px;
	border: 1px solid var(--ll-border);
	border-left: 4px solid var(--ll-accent);
	background: #fafafa;
	font-size: 0.88rem;
	line-height: 1.4;
	text-align: left;
	animation: ll-fade-in 0.25s ease;
}

.lunqra-login-modal__alert.is-error {
	border-left-color: #e11d48;
	background: #fff1f2;
	color: #9f1239;
	border-color: #ffe4e6;
}

.lunqra-login-modal__alert.is-success {
	border-left-color: #059669;
	background: #ecfdf5;
	color: #065f46;
	border-color: #d1fae5;
}

/* =========================================================================
   Forms & Icon Inputs
   ========================================================================= */

.lunqra-login-modal__form {
	display: grid;
	gap: 13px;
}

.lunqra-input-group {
	position: relative;
	width: 100%;
}

.lunqra-input-icon {
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	color: #9ca3af;
	pointer-events: none;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: color 0.2s ease;
}

.lunqra-input-group input[type="text"],
.lunqra-input-group input[type="password"],
.lunqra-input-group input[type="email"] {
	box-sizing: border-box;
	width: 100%;
	min-height: 50px;
	padding: 12px 16px 12px 42px;
	border: 1.5px solid #e5e7eb;
	border-radius: var(--ll-radius);
	background: #fafafa;
	color: var(--ll-text);
	font-family: inherit;
	font-size: 0.94rem;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.lunqra-input-group input::placeholder {
	color: #9ca3af;
	font-size: 0.88rem;
	letter-spacing: 0;
	text-transform: none;
}

.lunqra-input-group input:focus {
	outline: none;
	background: #ffffff;
	border-color: var(--ll-accent);
	box-shadow: 0 0 0 4px color-mix(in srgb, var(--ll-accent) 18%, transparent);
}

.lunqra-input-group:focus-within .lunqra-input-icon {
	color: var(--ll-accent);
}

.lunqra-login-modal__pass-wrap input {
	padding-right: 48px;
}

.lunqra-login-modal__toggle-pass {
	position: absolute;
	top: 50%;
	right: 8px;
	transform: translateY(-50%);
	width: 34px;
	height: 34px;
	border: 0;
	border-radius: 8px;
	background: transparent;
	color: #9ca3af;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: color 0.15s ease, background-color 0.15s ease;
}

.lunqra-login-modal__toggle-pass:hover {
	color: var(--ll-text);
	background: rgba(0, 0, 0, 0.05);
}

/* Form Row (Remember + Forgot) */
.lunqra-form-flex-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin: 2px 0 4px;
}

.lunqra-login-modal__remember {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.88rem;
	color: var(--ll-muted);
	cursor: pointer;
	user-select: none;
}

.lunqra-login-modal__remember input[type="checkbox"] {
	accent-color: var(--ll-accent);
	width: 17px;
	height: 17px;
	border-radius: 4px;
	cursor: pointer;
}

.lunqra-login-modal__text-btn.forgot-btn {
	color: var(--ll-muted);
	font-size: 0.85rem;
	font-weight: 600;
	padding: 0;
	background: transparent;
	border: 0;
	cursor: pointer;
	transition: color 0.15s ease;
}

.lunqra-login-modal__text-btn.forgot-btn:hover {
	color: var(--ll-accent);
	text-decoration: underline;
}

/* Submit Action Button */
.lunqra-login-modal__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	min-height: 50px;
	border: 0;
	border-radius: var(--ll-radius);
	background: linear-gradient(135deg, var(--ll-accent) 0%, color-mix(in srgb, var(--ll-accent) 85%, #000) 100%);
	color: #ffffff;
	font-family: inherit;
	font-size: 0.94rem;
	font-weight: 750;
	letter-spacing: 0.02em;
	cursor: pointer;
	box-shadow: 0 6px 20px -2px color-mix(in srgb, var(--ll-accent) 40%, transparent);
	transition: filter 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
	margin-top: 6px;
}

.lunqra-login-modal__submit:hover {
	filter: brightness(1.06);
	transform: translateY(-1px);
	box-shadow: 0 8px 26px -2px color-mix(in srgb, var(--ll-accent) 55%, transparent);
}

.lunqra-login-modal__submit:hover .btn-arrow {
	transform: translateX(3px);
}

.lunqra-login-modal__submit .btn-arrow {
	transition: transform 0.2s ease;
}

.lunqra-login-modal__submit:active {
	transform: translateY(0);
	filter: brightness(0.96);
}

.lunqra-login-modal__submit:disabled {
	opacity: 0.75;
	cursor: wait;
	transform: none;
}

.lunqra-login-modal__terms-note {
	font-size: 0.78rem;
	color: var(--ll-muted);
	text-align: center;
	line-height: 1.45;
	margin: 12px 0 0;
}

.lunqra-login-modal__links {
	margin: 18px 0 0;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 8px;
	align-items: center;
}

.lunqra-login-modal__text-btn {
	border: 0;
	background: transparent;
	color: var(--ll-accent);
	font-family: inherit;
	font-weight: 600;
	cursor: pointer;
	padding: 4px 8px;
	font-size: 0.88rem;
	border-radius: 6px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: all 0.15s ease;
}

.lunqra-login-modal__text-btn:hover {
	text-decoration: underline;
	background: rgba(255, 56, 92, 0.06);
}

.lunqra-login-modal__view[hidden] {
	display: none !important;
}

body.lunqra-login-modal-open {
	overflow: hidden !important;
}

/* =========================================================================
   Dark Theme
   ========================================================================= */

.lunqra-login-modal--theme-dark {
	--ll-card: #131720;
	--ll-text: #f9fafb;
	--ll-muted: #9ca3af;
	--ll-border: #242c3d;
}

.lunqra-login-modal--theme-dark .lunqra-login-modal__close {
	background: #1e2430;
	color: #9ca3af;
}

.lunqra-login-modal--theme-dark .lunqra-login-modal__close:hover {
	background: #2d3748;
	color: #ffffff;
}

.lunqra-login-modal--theme-dark .lunqra-segmented-tabs {
	background: #1a202c;
	border-color: #2d3748;
}

.lunqra-login-modal--theme-dark .lunqra-tab-btn {
	color: #9ca3af;
}

.lunqra-login-modal--theme-dark .lunqra-tab-btn.is-active {
	background: #2d3748;
	color: #ffffff;
}

.lunqra-login-modal--theme-dark .lunqra-input-group input {
	background: #1a202c;
	border-color: #2d3748;
	color: #f9fafb;
}

.lunqra-login-modal--theme-dark .lunqra-input-group input:focus {
	background: #131720;
}

.lunqra-login-modal--theme-dark .lunqra-login-modal__alert {
	background: #1a202c;
}

@media (prefers-color-scheme: dark) {
	.lunqra-login-modal--theme-system {
		--ll-card: #131720;
		--ll-text: #f9fafb;
		--ll-muted: #9ca3af;
		--ll-border: #242c3d;
	}

	.lunqra-login-modal--theme-system .lunqra-login-modal__close {
		background: #1e2430;
		color: #9ca3af;
	}

	.lunqra-login-modal--theme-system .lunqra-login-modal__close:hover {
		background: #2d3748;
		color: #ffffff;
	}

	.lunqra-login-modal--theme-system .lunqra-segmented-tabs {
		background: #1a202c;
		border-color: #2d3748;
	}

	.lunqra-login-modal--theme-system .lunqra-tab-btn {
		color: #9ca3af;
	}

	.lunqra-login-modal--theme-system .lunqra-tab-btn.is-active {
		background: #2d3748;
		color: #ffffff;
	}

	.lunqra-login-modal--theme-system .lunqra-input-group input {
		background: #1a202c;
		border-color: #2d3748;
		color: #f9fafb;
	}

	.lunqra-login-modal--theme-system .lunqra-input-group input:focus {
		background: #131720;
	}

	.lunqra-login-modal--theme-system .lunqra-login-modal__alert {
		background: #1a202c;
	}
}

/* =========================================================================
   Mobile Responsiveness
   ========================================================================= */

@media (max-width: 767px) {
	.lunqra-login-modal__dialog,
	.lunqra-login-modal__dialog--split {
		grid-template-columns: 1fr;
		grid-template-rows: 130px minmax(0, 1fr);
		min-height: 0;
		max-height: min(700px, calc(100dvh - 24px));
		width: min(440px, calc(100vw - 24px));
		border-radius: 20px;
	}

	.lunqra-login-modal__panel {
		min-height: 130px;
		height: 130px;
		padding: 16px;
	}

	.lunqra-login-modal__panel-title,
	.lunqra-login-modal__panel-desc {
		display: none;
	}

	.lunqra-login-modal__panel-content {
		margin-top: 0;
	}

	.lunqra-login-modal__main {
		padding: 24px 20px 20px;
	}

	.lunqra-login-modal__close {
		width: 32px;
		height: 32px;
		font-size: 18px;
		top: 12px;
		right: 12px;
	}

	.lunqra-login-modal__title {
		font-size: 1.25rem;
	}

	.lunqra-login-modal__desc {
		font-size: 0.86rem;
		margin-bottom: 16px;
	}
}

@keyframes ll-modal-scale {
	from {
		opacity: 0;
		transform: translateY(20px) scale(0.96);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@keyframes ll-fade-in {
	from { opacity: 0; transform: translateY(-4px); }
	to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
	.lunqra-login-modal__dialog {
		animation: none !important;
	}
}

/* =========================================================================
   Standalone Luxury Auth Page Styles (/giris/ & /kayit-ol/)
   ========================================================================= */

.lunqra-auth-page-wrap {
	background: #F8FAFC;
	padding: 40px 0 80px;
	min-height: calc(100vh - 200px);
	font-family: "Plus Jakarta Sans", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.lunqra-auth-breadcrumbs {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: #64748B;
	margin-bottom: 24px;
}

.lunqra-auth-breadcrumbs a {
	color: #0F172A;
	text-decoration: none;
	font-weight: 600;
}

.lunqra-auth-breadcrumbs a:hover {
	color: #FF5A1F;
}

.lunqra-auth-breadcrumbs .crumb-sep {
	color: #CBD5E1;
}

.lunqra-auth-breadcrumbs .current {
	color: #64748B;
}

.lunqra-auth-container {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: 0;
	background: #FFFFFF;
	border: 1px solid #E2E8F0;
	border-radius: 28px;
	overflow: hidden;
	box-shadow: 0 20px 60px -15px rgba(0, 0, 0, 0.07), 0 0 0 1px rgba(0, 0, 0, 0.02);
	max-width: 1060px;
	margin: 0 auto;
}

/* Left Brand Panel */
.lunqra-auth-panel {
	position: relative;
	background: #0F172A;
	color: #FFFFFF;
	padding: 48px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	overflow: hidden;
}

.auth-panel-backdrop {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 10% 20%, rgba(255, 90, 31, 0.25) 0%, transparent 50%),
	            radial-gradient(circle at 90% 80%, rgba(255, 122, 0, 0.18) 0%, transparent 60%),
	            linear-gradient(145deg, #0F172A 0%, #080C14 100%);
	pointer-events: none;
}

.auth-panel-content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.auth-brand-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	padding: 6px 14px;
	border-radius: 99px;
	font-size: 11.5px;
	font-weight: 800;
	letter-spacing: 0.04em;
	color: #FFAA7B;
	margin-bottom: 24px;
	align-self: flex-start;
	backdrop-filter: blur(8px);
}

.badge-pulse {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #FF5A1F;
	box-shadow: 0 0 10px #FF5A1F;
}

.auth-panel-title {
	font-size: 32px;
	font-weight: 800;
	line-height: 1.25;
	color: #FFFFFF;
	margin: 0 0 16px;
	letter-spacing: -0.02em;
}

.auth-panel-desc {
	font-size: 15px;
	color: #94A3B8;
	line-height: 1.6;
	margin: 0 0 36px;
}

.auth-perks-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 40px;
}

.perk-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.perk-icon {
	font-size: 22px;
	line-height: 1;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	padding: 10px;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.perk-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.perk-text strong {
	font-size: 14.5px;
	color: #F8FAFC;
	font-weight: 700;
}

.perk-text span {
	font-size: 13px;
	color: #94A3B8;
	line-height: 1.4;
}

.auth-panel-footer {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: auto;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-avatars-group {
	display: flex;
	gap: -6px;
}

.avatar-pill {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.15);
	border: 2px solid #0F172A;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
}

.auth-footer-text {
	font-size: 13px;
	color: #94A3B8;
	font-weight: 600;
}

/* Right Auth Card */
.lunqra-auth-card {
	padding: 48px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* Switcher Tabs */
.lunqra-auth-tabs {
	display: flex;
	background: #F1F5F9;
	padding: 4px;
	border-radius: 14px;
	margin-bottom: 32px;
	gap: 4px;
}

.auth-tab {
	flex: 1;
	padding: 10px 16px;
	border: none;
	background: transparent;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 700;
	color: #64748B;
	cursor: pointer;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

.auth-tab.is-active {
	background: #FFFFFF;
	color: #0F172A;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.lunqra-auth-view {
	display: none;
	animation: ll-fade-in 0.25s ease;
}

.lunqra-auth-view.is-active {
	display: block;
}

.auth-header {
	margin-bottom: 24px;
}

.auth-title {
	font-size: 24px;
	font-weight: 800;
	color: #0F172A;
	margin: 0 0 6px;
	line-height: 1.2;
}

.auth-subtitle {
	font-size: 14px;
	color: #64748B;
	margin: 0;
	line-height: 1.5;
}

.form-group {
	margin-bottom: 18px;
}

.form-group label {
	display: block;
	font-size: 13.5px;
	font-weight: 700;
	color: #334155;
	margin-bottom: 6px;
}

.label-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 6px;
}

.btn-text-link {
	background: none;
	border: none;
	color: #FF5A1F;
	font-size: 12.5px;
	font-weight: 700;
	cursor: pointer;
	padding: 0;
	text-decoration: underline;
}

.input-with-icon {
	position: relative;
	display: flex;
	align-items: center;
}

.field-icon {
	position: absolute;
	left: 14px;
	color: #94A3B8;
	pointer-events: none;
	display: flex;
	align-items: center;
}

.input-with-icon input {
	width: 100%;
	height: 48px;
	padding: 0 14px 0 42px;
	background: #F8FAFC;
	border: 1.5px solid #E2E8F0;
	border-radius: 12px;
	font-size: 14.5px;
	color: #0F172A;
	transition: all 0.2s ease;
	outline: none;
	box-sizing: border-box;
}

.input-with-icon input:focus {
	background: #FFFFFF;
	border-color: #FF5A1F;
	box-shadow: 0 0 0 4px rgba(255, 90, 31, 0.12);
}

.pass-wrap input {
	padding-right: 42px;
}

.btn-toggle-eye {
	position: absolute;
	right: 12px;
	background: none;
	border: none;
	color: #94A3B8;
	cursor: pointer;
	padding: 6px;
	display: flex;
	align-items: center;
	transition: color 0.2s ease;
}

.btn-toggle-eye:hover {
	color: #0F172A;
}

.form-options-row {
	margin-bottom: 22px;
}

.checkbox-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13.5px;
	color: #475569;
	cursor: pointer;
	font-weight: 500;
}

.checkbox-label input[type="checkbox"] {
	width: 17px;
	height: 17px;
	accent-color: #FF5A1F;
	cursor: pointer;
}

.btn-auth-submit {
	width: 100%;
	height: 50px;
	background: linear-gradient(135deg, #FF5A1F 0%, #FF7A00 100%);
	color: #FFFFFF;
	border: none;
	border-radius: 14px;
	font-size: 15px;
	font-weight: 800;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	box-shadow: 0 4px 16px rgba(255, 90, 31, 0.35);
	transition: all 0.2s ease;
}

.btn-auth-submit:hover {
	opacity: 0.95;
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(255, 90, 31, 0.45);
}

.btn-auth-submit:active {
	transform: translateY(0);
}

.terms-note {
	font-size: 12px;
	color: #94A3B8;
	line-height: 1.5;
	text-align: center;
	margin: 14px 0 0;
}

.auth-switch-footer {
	margin-top: 24px;
	padding-top: 20px;
	border-top: 1px solid #F1F5F9;
	text-align: center;
	font-size: 13.5px;
	color: #64748B;
}

.btn-text-action {
	background: none;
	border: none;
	color: #FF5A1F;
	font-weight: 700;
	cursor: pointer;
	padding: 0 4px;
	text-decoration: underline;
}

.lunqra-auth-alert {
	padding: 12px 16px;
	border-radius: 10px;
	font-size: 13.5px;
	margin-bottom: 18px;
	display: none;
}

.lunqra-auth-alert.is-error {
	display: block;
	background: #FEF2F2;
	border: 1px solid #FCA5A5;
	color: #B91C1C;
}

.lunqra-auth-alert.is-success {
	display: block;
	background: #F0FDF4;
	border: 1px solid #86EFAC;
	color: #15803D;
}

@media (max-width: 900px) {
	.lunqra-auth-container {
		grid-template-columns: 1fr;
		border-radius: 20px;
	}

	.lunqra-auth-panel {
		padding: 32px 24px;
	}

	.auth-panel-title {
		font-size: 24px;
	}

	.auth-perks-list {
		display: none;
	}

	.lunqra-auth-card {
		padding: 32px 24px;
	}
}



