/**
 * Login video background + caption overlay (login page).
 */

.login-video-bg {
	object-fit: cover;
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 0;
	pointer-events: none;
}

.login-video-bg--mobile {
	display: none;
}

@media (max-width: 767.98px) {
	.login-video-bg--desktop {
		display: none;
	}

	.login-video-bg--mobile {
		display: block;
	}
}

.login-video-overlay {
	position: fixed;
	inset: 0;
	z-index: 0;
	background: rgba(10, 14, 26, 0.45);
	pointer-events: none;
}

.login-layout-stack {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.25rem;
	width: 100%;
}

.login-video-caption {
	width: 100%;
	max-width: 420px;
	text-align: center;
	pointer-events: none;
}

.login-video-caption--mobile {
	display: none;
}

@media (max-width: 767.98px) {
	.login-video-caption--desktop {
		display: none;
	}

	.login-video-caption--mobile {
		display: block;
	}
}

.login-video-caption__title {
	margin: 0;
	font-size: 1.35rem;
	font-weight: 600;
	line-height: 1.3;
	color: rgba(255, 255, 255, 0.96);
	text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
}

.login-video-caption__desc {
	margin: 0;
	font-size: 0.95rem;
	font-weight: 400;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.88);
	text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

@media (max-width: 767.98px) {
	.login-video-caption__title {
		font-size: 1.15rem;
	}

	.login-video-caption__desc {
		font-size: 0.875rem;
	}
}
