body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Arial', sans-serif;
}

/* Fondo SIN el efecto difuminado */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative; 
    background: url('../img/mainumbynovedades_fondo.png') no-repeat center center fixed;
    background-size: cover;
}

/* La tarjeta blanca */
.login-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.2);
    z-index: 1; 
    width: 100%;
    max-width: 350px;
    text-align: center;
}

.logo { 
    width: 100%; /* Hace que el logo sea flexible */
    max-width: 250px; /* Aumentamos el tamaño máximo (antes 150px) */
    margin-bottom: 25px; /* Un poco más de espacio hacia abajo para respirar */
}

.input-group { 
    text-align: left; 
    margin-bottom: 15px; 
}

.input-group label { 
    display: block; 
    margin-bottom: 5px; 
    color: #555; 
}

.input-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box; 
}

.btn-ingresar {
        width: 100%;
        padding: 12px;
        background-color: #0a4b45; /* Verde azulado oscuro que combina con el fondo */
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-weight: bold;
        margin-top: 10px;
        transition: background-color 0.3s ease; /* Transición suave al pasar el ratón */
    }

    .btn-ingresar:hover { 
        background-color: #06332f; /* Un tono un poco más oscuro al pasar el cursor */
    }