/* Reset de estilos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilos generales */
body {
    font-family: Arial, sans-serif;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

/* Estilos del formulario de inicio de sesión */
h1 {
    color: #151635;
}

label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.orange-button {
    background-color: #7DD420;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.error {
    color: red;
    font-weight: bold;
}

/* Estilos específicos para el encabezado */
header {
	background-color: #151635;
	color: #fff;
	padding: 10px 0;
}

.header-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 30px;
}

.logo {
	margin-right: 50px;
	padding: 5px 20px 5px 20px;
	width: 150px; /* Tamaño de la imagen del logo */
}

.user-info {
    display: flex;
    flex-direction: column; /* Agrega esta línea */
    align-items: center;
}

.user-info span {
	margin-right: 10px;
}

.logoauto span {
	margin-right: 10px;
}

.logoaut {
	padding: 5px 20px 5px 20px;
	width: 300px; /* Tamaño de la imagen del logo */
}

.logout-button {
	background-color: #7DD420;
	color: #fff;
	border: none;
	padding: 5px 10px 5px 10px;
	border-radius: 4px;
	cursor: pointer;
}

.logout-link {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    display: block;
    margin-top: 10px;
}

.logout-link:hover {
    text-decoration: underline;
}
/* Estilos para el menú */
nav {
	display: flex;
	justify-content: center;
	background-color: #151635;
	padding: 10px 0;
}

ul {
	list-style: none;
	display: flex;
}

li {
	margin-right: 20px;
}

a {
	color: #fff;
	text-decoration: none;
}

/* Estilos para el icono de menú en dispositivos móviles */
.menu-icon {
	display: none;
	color: #fff;
	font-size: 24px;
	cursor: pointer;
}

@media (max-width: 768px) {
	.menu-icon {
		display: block;
	}

	ul {
		display: none;
		flex-direction: column;
		background-color: #151635;
		position: absolute;
		top: 60px;
		right: 0;
		left: 0;
	}

	ul.active {
		display: flex;
	}

	li {
		margin: 0;
		padding: 10px 20px;
		text-align: center;
	}
}
	  