/* Página “en construcción” — colores tema Isla */

html:has(#login_wrap.construction-page) body {
	background: #ededed !important;
	background-image: none !important;
	color: #333 !important;
}

.construction-page {
	min-height: 100vh;
	width: 100%;
}

.construction-page__inner {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(24px, 5vw, 48px) 16px;
	background:
		radial-gradient(ellipse 90% 60% at 50% 0%, rgba(3, 173, 216, 0.1) 0%, transparent 55%),
		linear-gradient(180deg, #f4f6f8 0%, #ededed 100%);
}

.construction-page__card {
	width: min(520px, 100%);
	margin: 0 auto;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 16px;
	box-shadow:
		0 1px 3px rgba(0, 0, 0, 0.08),
		0 12px 40px rgba(0, 0, 0, 0.06);
	text-align: center;
	animation: construction-in 0.55s ease both;
}

@keyframes construction-in {
	from {
		opacity: 0;
		transform: translateY(14px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.construction-page #login_logo {
	height: clamp(56px, 14vw, 88px);
	filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.06));
}

.construction-page__icon {
	font-size: clamp(2rem, 8vw, 3rem);
	color: #03add8;
	line-height: 1;
}

.construction-page__title {
	color: #222 !important;
	font-size: clamp(1.35rem, 4.5vw, 1.85rem) !important;
	font-weight: 800 !important;
	line-height: 1.25;
	margin: 0;
}

.construction-page__text {
	color: #555 !important;
	line-height: 1.65;
	max-width: 36em;
	margin: 0 auto;
	font-size: clamp(0.95rem, 2.8vw, 1.05rem) !important;
}

@media (prefers-reduced-motion: reduce) {
	.construction-page__card {
		animation: none;
	}
}
