#eject{
	position:fixed;
	top:0;
	background-color:rgba(0,0,0.75);
	min-width:100vw;
	font-size:75%;
	display:none;
}

.contenedor {
	display: grid;
	grid-template-columns: 1fr;
	place-items: center;
	min-height: 100vh;
	background-color:#000;
	background-image:
		linear-gradient(0deg, rgba(192, 235, 228, 0.9) 0%, rgba(98, 199, 193, 0.9) 100%),
		url("../imgs/logo_fondo.png");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: 0px 0px;
}

.centrado{
	padding:20px;
}

.formulario-login {
	display: grid;
	gap: 20px;
	width: 100%;
	font-family: sans-serif;
	color: #333;
}

.logo{
	display: block;
	margin: auto;
	max-width: 171px;
	max-height: 289px;
	width: 100%;
	height: auto;
}

.titulo{
	font-size:14px;
	text-align:center;
	color:#497F7F;
	padding:0px;
	margin:0px;
}

.formulario-login input{
	border-radius: 8px;
	background-color: #EDF8F8;
	max-width:300px;
	width: 100%;
	outline: none;
	border: 1px solid #9DD8D4;
	padding: 14px;
}

.formulario-login input:focus{
	background-color: #FFFFFF;
}

button{
	background-color: #62C7C1;
	padding: 14px;
	border-radius: 8px;
	color: #f2f2f2;
	border: none;
	font-weight: medium;
	max-width:300px;
	width: 100%;
	transition: background-color 0.3s ease;
	margin-bottom:10px;
}

button:hover{
	background-color: #44bbbd;
}

.linea-con-texto {
	display: flex;
	align-items: center;
	gap: 8px;
	width: 100%;
}

.linea {
	flex: 1;
	height: 1px;
	background-color: #497F7F;
}

.texto {
	color: #497F7F;
	font-size: 14px;
	white-space: nowrap;
}

.ayuda{
	font-size: 12px;
	color: #497F7F;
	text-align: center;
	margin-top: 5px;
	max-width:300px;
	width: 100%;
}