body.login {
    background: url('../img/fondo.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
    text-align: center;
    position: relative;
}

.login-box .logo {
    width: 180px;
    margin: 0 auto 20px auto;
    display: block;
}

.login-box .avatar {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    border-radius: 50%;
    object-fit: cover;
}

.login-box input[type="email"],
.login-box input[type="password"] {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
}

.login-box button {
    width: 100%;
    padding: 12px;
    margin-top: 15px;
    background-color: #007bff;
    border: none;
    color: white;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.login-box button:hover {
    background-color: #0056b3;
}

.error-message {
    color: red;
    font-weight: bold;
    margin-bottom: 15px;
}

/* estilos select municipio */

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.dashboard-container {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.logo {
    width: 120px;
    margin-bottom: 30px;
}

h2 {
    margin-bottom: 20px;
    color: #333;
    font-size: 20px;
}

label {
    display: block;
    text-align: left;
    margin-bottom: 5px;
    color: #444;
    font-weight: 500;
}

select {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    margin-bottom: 20px;
    font-size: 15px;
    background-color: #fff;
}

button {
    width: 100%;
    padding: 12px;
    background-color: #2C3930;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background-color: #084587;
}

/* estilos de menu */
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #f5f5f5;
}

.menu-container {
    max-width: 800px;
    margin: 50px auto;
    background: white;
    text-align: center;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.menu-container .logo {
    width: 180px;
    margin-bottom: 10px;
}

.menu-container h1 {
    margin: 10px 0 5px;
    font-size: 18px;
    color: #333;
}

.menu-container h2 {
    margin: 0 0 30px;
    font-size: 16px;
    color: #555;
}

.menu-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.menu-button {
    background-color: #2d2d2d;
    color: white;
    border: none;
    width: 240px;
    padding: 15px 20px;
    border-radius: 8px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: background 0.3s;
}

.menu-button:hover {
    background-color: #1a1a1a;
}

.menu-button img {
    width: 50px;
    height: 50px;
}

.alta-button {
    background-color: #8E1616;
    color: white;
    border: none;
    width: 360px;
    padding: 5px 20px;
    border-radius: 8px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: background 0.3s;
}

.alta-button:hover {
    background-color: #D84040;
}

.alta-button img {
    width: 50px;
    height: 50px;
}

.logo-menu {
    text-align: center;
    margin-bottom: 30px;
}

.logo-menu img {
    width: 220px; /* Tamaño más grande */
    max-width: 100%;
    height: auto;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

.logo-menu img:hover {
    transform: scale(1.05); /* Efecto al pasar el mouse */
}
