body {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(16px, 4vw, 48px);
}

.log-mai-shell {
	width: 100%;
	max-width: 1000px;
	border: 1px solid var(--line-strong);
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 580px;
}

.log-mai-loader {
	display: none;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	min-height: 400px;
}

.log-mai-loaderShow {
	display: flex;
}

.log-mai-loaderDot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--brand);
	opacity: 0.5;
	animation: logMaiLoaderBounce 1s ease-in-out infinite;
}

.log-mai-loaderDot:nth-child(2) {
	animation-delay: 0.15s;
}

.log-mai-loaderDot:nth-child(3) {
	animation-delay: 0.3s;
}
@keyframes logMaiLoaderBounce {
	0%,
	80%,
	100% {
		transform: translateY(0);
		opacity: 0.4;
	}
	40% {
		transform: translateY(-8px);
		opacity: 1;
	}
}

.log-mai-content {
	display: none;
	width: 100%;
}

.log-mai-contentShow {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.log-bra-panel {
	position: relative;
	color: var(--white);
	padding: clamp(28px, 4vw, 52px);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.85)),
		url("/assets/images/setup-bg.jpg");
	background-size: cover;
	background-position: center;
}

.log-bra-eyebrow {
	font-size: 12px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--brand);
	font-weight: 600;
}

.log-bra-wordmark {
	font-family: "Google Sans", cursive;
	font-size: clamp(38px, 5vw, 56px);
	margin-top: 16px;
	text-transform: uppercase;
}

.log-bra-tagline {
	font-size: 15px;
	opacity: 0.75;
	margin-top: 14px;
	max-width: 30ch;
	line-height: 1.5;
}

.log-bra-stats {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding-top: 20px;
}

.log-bra-stat {
	display: flex;
	justify-content: space-between;
	font-size: 13px;
}

.log-bra-statLabel {
	opacity: 0.55;
}

.log-bra-statValue {
	font-weight: 700;
}

.log-bra-location {
	font-size: 12px;
	opacity: 0.5;
	letter-spacing: 0.05em;
}

.log-for-panel {
	padding: clamp(28px, 4vw, 52px);
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.log-for-eyebrow {
	font-size: 12px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--accent);
	font-weight: 600;
}

.log-for-title {
	font-family: "Google Sans", cursive;
	font-size: clamp(26px, 2.6vw, 32px);
	margin-top: 10px;
	text-transform: uppercase;
}

.log-for-sub {
	font-size: 14px;
	opacity: 0.6;
	margin-top: 8px;
}

.log-for-form {
	margin-top: 28px;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.log-for-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.log-for-label {
	font-size: 11px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-weight: 600;
	opacity: 0.6;
}

.log-for-input {
	border: none;
	border-bottom: 2px solid var(--line);
	outline: none;
	font-size: 15px;
	padding: 10px 2px;
	background: none;
}

.log-for-input:focus {
	border-bottom-color: var(--brand);
}

.log-for-remember {
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: 13px;
}

.log-for-remember input {
	accent-color: var(--brand);
}

.log-for-error {
	display: none;
	border: 1px solid var(--accent);
	color: var(--accent);
	font-size: 13px;
	padding: 10px 12px;
}

.log-for-error.log-for-errorShow {
	display: block;
}

.log-for-submit {
	margin-top: 6px;
	background: var(--brand);
	color: #fff;
	border: none;
	outline: none;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	padding: 15px 20px;
	cursor: pointer;
	transition:
		background 0.18s ease,
		color 0.18s ease;
}

.log-for-submit:hover {
	background: var(--ink);
}

.log-for-submit:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

@media (max-width: 800px) {
	.log-mai-shell {
		grid-template-columns: 1fr;
	}
}
