.contenedor {
	font-family: Arial, sans-serif;
	background: #e0f7fa;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100vh;
	margin: 0;
}

.login-container {
	background: white;
	padding: 30px 40px;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0,0,0,0.2);
	text-align: center;
}

.login-container h1 {
	margin-bottom: 20px;
	color: #00796b;
}

input[type="text"], input[type="password"] {
	width: 100%;
	padding: 12px;
	margin: 10px 0;
	border: 1px solid #ccc;
	border-radius: 5px;
}

button {
	width: 100%;
	padding: 12px;
	margin: 10px 0;
	background-color: #00796b;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

button:hover {
	background-color: #004d40;
}

.footer {
	margin-top: 20px;
	color: #555;
	font-size: 0.9em;
}

.mimodal {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1000;"
}

/* Contenido del modal */
.mimodal-content {
	width: 40%;
	background-color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 20px;
	box-sizing: border-box;
	margin-left: 30%;
	margin-top: 15%;
}

.mimodal-content p {
	font-size: 16px;
	margin-bottom: 30px;
}

