.login-glass .logo-card-img {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.2rem;
	max-width: 140px;
	width: 60%;
	height: auto;
}
/* Fondo logo como <img> desenfocado y centrado */
.bg-logo-img {
	position: fixed;
	top: 50%;
	left: 50%;
	width: 120vw;
	max-width: 1800px;
	min-width: 600px;
	height: auto;
	transform: translate(-50%, -50%);
	opacity: 0.22;
	filter: blur(3.5px);
	z-index: 0;
	pointer-events: none;
	user-select: none;
}

.login-glass {
	position: relative;
	z-index: 1;
	background: rgba(255,255,255,0.18);
	border-radius: 1.5rem;
	box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
	backdrop-filter: blur(10px) saturate(180%);
	-webkit-backdrop-filter: blur(10px) saturate(180%);
	border: 1px solid rgba(255,255,255,0.24);
	max-width: 370px;
	width: 100%;
	padding: 2.5rem 2rem 2rem 2rem;
}

.btn-orange {
	background-color: #ff6500;
	color: #fff;
	border: none;
	transition: background 0.2s;
}
.btn-orange:hover, .btn-orange:focus {
	background-color: #e65c00;
	color: #fff;
}

.form-label {
	font-weight: 500;
}
.form-control {
	background: rgba(255,255,255,0.7);
	border-radius: 0.5rem;
	border: 1px solid #ddd;
	box-shadow: none;
}
.form-control:focus {
	border-color: #ff6500;
	box-shadow: 0 0 0 0.2rem rgba(255,101,0,0.15);
}

html, body {
	height: 100%;
	min-height: 100vh;
	margin: 0;
	padding: 0;
	overflow: hidden;
}
body {
	background: gray;
	background-size: cover;
}

.login-viewport {
	min-height: 100vh;
	width: 100vw;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

@media (max-width: 500px) {
	.login-glass {
		padding: 1.5rem 0.7rem 1.2rem 0.7rem;
		max-width: 98vw;
	}
	.bg-logo-img {
		width: 180vw;
		min-width: 0;
		filter: blur(5px);
	}
}
