body{
	height: 100vh;
}
.autentificador{
	background-color: white;
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
	#img-fondo{
		width: 100%;
		max-width: 800px;
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
		transition: opacity 0.5s;
	}
	#img-fondo.half{
		opacity: 0.5;
	}
	.autentificador-card{
		max-width: 90%;
		max-height: 90%;
		overflow-y: auto;
		background: rgba(255,255,255,0.85);
		backdrop-filter: blur(5px);
	}

.preloader{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: absolute;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	background: white;
	z-index: 100;
}
	.preloader > img{
		max-width: 200px;
		max-height: 200px;
	}
.loader{
	justify-content: center;
	align-items: center;
	width: 100%;
	margin: 3em 0;
	display: none;
}
	.loader.display{
		display: flex;
	}


.input-codigo{
	text-align: center !important;
}


/*HELPERS*/
.mx-auto{margin-right: auto; margin-left: auto;}
.disabled{
	pointer-events: none !important;
	opacity: 0.5 !important;
}
.overflow-hidden{
	overflow: hidden !important;
}
.response-messages:not(:empty){
	padding: var(--_padding)!important;
	margin: 1em 0;
	background: var(--error-container);
	font-size: 1.1em;
}
.nowrap{
	white-space: nowrap !important;
}
@media screen and (max-width: 500px){
	#img-fondo{
		width: 150%;
	}
}