/* Fondo y estilo general */
body {
	background: #121212;
	color: #f0f0f0;
	font-family: Arial, sans-serif;
	height: 100vh;
	display: flex;
	justify-content: center; /* Centrado h */
	align-items: center; /* Centrado v */
}

/* Contenedor principal */
.login-container {
	max-width: 350px;
	width: 100%; /* Asegurar adaptabilidad en pantallas pequeñas */
	padding: 20px;
	background: #1e1e1e;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Etiquetas y campos */
.form-label {
	font-weight: bold;
	color: #e0e0e0;
}

.form-control {
	background: #2c2c2c;
	width: 60%;
	margin: auto;
	color: #ffffff;
	border: 1px solid #444;
	transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, width 0.7s ease;
}

.form-control:focus {
	background: #333333;
	border-color: #007bff;
	color: #ffffff;
	width: 70%;
	box-shadow: 0 0 8px rgba(0, 123, 255, 0.3);
}

/* Botón */
.btn-primary {
	width: 50%;
	background-color: #007bff;
	border: none;
	transition: background-color 0.5s ease, width 0.5s ease;
}

.btn-primary:hover {
	width: 40%;
	background-color: #005dc1;
}

/* Texto del pie */
.text-muted {
	color: #e0e0e0 !important;
}

div {
	text-align: center;
}

/* Botón Volver */
.btn-secondary {
	width: 50%;
	background-color: #dc3545;
	color: #ffffff;
	border: none;
	margin-top: 10px;
	transition: background-color 0.5s ease, width 0.5s ease;
}

.btn-secondary:hover {
	width: 40%;
	background-color: #a71d2a;
}