    /*Caja de Login*/
    /* Centrado del formulario y tamaño más grande y responsive */
    .BoxGeneralLogin{
        background-color: var(--blanco);
        width: 440px;
        height: 500px;
        max-width: 95%;
        box-sizing: border-box;
        margin: auto;
    }

    

    .Boxlogin{
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
        gap: 1rem;
    }

    
    

    /*Contenido De Login*/
    .h1-titulos-login{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: baseline;
        gap: 10px;
    }

    .V4{
        font-size: 25px;
        color: var(--verde2);
        font-weight: bold;
    }

    .titulo-img{
        margin: auto;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        gap: 20px;
    }

    .imagen-cpsistemas{
        height: 48px;
        width: 48px;
    }

    .contenedor-registros-login{
        display: flex;
        flex-direction: column;
        align-items: stretch;
        flex-wrap: nowrap;
        margin-bottom: 1.5rem;
    }
    .mostrar-contra{
        margin-top: 2%;
        display: flex;
        justify-content:start;
        gap: 5px;
    }
    .input-login{
        height: 52px;
        padding: 0 0.75rem;
        font-size: 1rem;
    }
    .Boton-Loguearse{
        margin-bottom: 2vh;
    }


/* Responsive adjustments */
@media (max-width: 520px){
    
    .Boxlogin{
        gap: 0.75rem;
    }
    .imagen-cpsistemas{
        height: 36px;
        width: 36px;
    }
    .V4{ font-size: 20px; }
    .input-login{ height: 48px; }
}






/* Modal Ususario Inconrrecto Login */

.DifuminarPantalla{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(225, 225, 225, 0.5);
    backdrop-filter: blur(8px);
    z-index: 998;
    display: none;
}
.Contenedor-Alerta-Login{
    margin: 40vh auto;
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.Cartel-Error{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.Centradomodal{
    background-color: var(--blanco);
    width: 30%;
    margin: 35vh auto;
    height: auto;
    padding: 1vh;
}
