body {
            margin: 0;
            padding: 0;
            height: 100vh;
            background:
/*                linear-gradient(to right, rgba(0,0,0,0.6), rgba(0,0,0,0.9)), */
                url('../../images/loginFONDOGRIS.png') no-repeat center center fixed;
            background-size: cover;
            color: white;
            font-family: Arial, sans-serif;
        }

.login-container {
            margin-top: 10%;
            margin-bottom: 5%;
/*            box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2), 0 9px 26px 0 rgba(0, 0, 0, 0.19);
            border-radius: 20px 20px 0 20px;
*/
        }
        .x1 {
            box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2), 0 9px 26px 0 rgba(0, 0, 0, 0.19);
/*            border-radius: 20px 20px 0 20px; */
            border: 5px solid #fff;
        }
        .login-form {
            padding: 5%;
            background: #fff;
        }
        .login-form h3 {
            text-align: center;
            color: #333;
            margin-bottom: 20px;
        }
        .login-image {
            padding: 0;
/*            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('./images/loginLATERAL.jpg');
*/
            width:200;
            color: white;
        }
        .image-text {
            padding: 20px;
            text-align: center;
        }
        .image-text h2 {
            font-weight: 600;
        }
        .btnSubmit {
            width: 100%;
            border-radius: 1rem;
            padding: 1.5%;
            border: none;
            cursor: pointer;
            font-weight: 600;
            color: #fff;
            background-color: #0062cc;
        }
        .forgot-pwd {
            color: #0062cc;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
        }
        .forgot-pwd:hover {
            text-decoration: underline;
        }


        #bloqueo-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: rgba(0, 0, 0, 0.5); /* Fondo negro casi opaco */
            color: white;
            font-family: Arial, sans-serif;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 9999; /* Asegura que esté por encima de todo */
            text-align: center;
        }

        #bloqueo-contador {
            font-size: 4rem;
            font-weight: bold;
            margin-top: 20px;
            color: #ff4757;
        }
