/* ============================================================
   VegaTurnos — Login propio
   ============================================================ */

.vgt-login-wrap {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 32px 18px;
	background: linear-gradient(150deg, #1F4E7A 0%, #2C6BA8 48%, #5C9BD1 100%);
	position: relative;
	overflow: hidden;
}
/* Brillos decorativos suaves */
.vgt-login-wrap::before,
.vgt-login-wrap::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	background: rgba(255,255,255,.08);
	pointer-events: none;
}
.vgt-login-wrap::before { width: 420px; height: 420px; top: -140px; right: -120px; }
.vgt-login-wrap::after { width: 320px; height: 320px; bottom: -120px; left: -100px; }

.vgt-login-card {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 430px;
	background: #fff;
	border-radius: var(--vgt-r-lg);
	box-shadow: 0 34px 80px rgba(10,38,68,.42);
	padding: 44px 38px 34px;
	text-align: center;
}

.vgt-login-logo { margin-bottom: 16px; }
.vgt-login-logo img { max-height: 96px; width: auto; }
.vgt-login-logo-fallback {
	font-weight: 800;
	color: var(--vgt-azul-profundo);
	font-size: 20px;
}

.vgt-login-title {
	margin: 6px 0 2px !important;
	font-size: 28px;
	font-weight: 800;
	color: var(--vgt-azul-profundo);
	letter-spacing: .3px;
}
.vgt-login-sub { margin: 0 0 24px; color: var(--vgt-gris-sec); font-size: 14px; }

.vgt-login-form { display: flex; flex-direction: column; gap: 17px; text-align: left; }
.vgt-login-form .vgt-check { justify-content: flex-start; }
.vgt-login-form .vgt-btn { margin-top: 4px; }
.vgt-login-foot { margin: 24px 0 0; font-size: 12.5px; color: var(--vgt-gris-sec); }

.vgt-login-card .vgt-aviso { margin: 0 0 18px; max-width: none; }
