        /* ============================= */
        /* RESET */
        /* ============================= */
        * { box-sizing: border-box; margin:0; padding:0; }

        body {
            font-family: Arial, Helvetica, sans-serif;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #f2f4f8;
            background-image: url('../src/assets/img/fondo6.jpg');
            background-size: cover;
            background-repeat: no-repeat;            
        }

        /* ============================= */
        /* CONTENEDOR LOGIN */
        /* ============================= */
        .login-container {
            background: rgb(255, 255, 255);
            width: 400px;
            padding: 40px;
            border-radius: 18px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
            text-align: center;
        }

        /* LOGO */
        .login-logo {
            width: 100%;      /* 50% del contenedor, ajusta según necesidad */
            max-width: 500px; /* límite máximo */
            height: auto;
            display: block;
            margin: 0 auto;
        }

        h1 {
            margin-bottom: 25px;
            font-size: 1.8rem;
            color: #333;
        }

        /* ============================= */
        /* FORMULARIO */
        /* ============================= */
        form p {
            margin-bottom: 18px;
            text-align: left;
        }

        form label {
            display: block;
            margin-bottom: 6px;
            font-weight: bold;
        }

        input {
            width: 100%;
            padding: 10px;
            border-radius: 8px;
            border: 1px solid #ccc;
            font-size: 14px;
            transition: 0.3s;
        }

        input:focus {
            outline: none;
            border-color: #007bff;
            box-shadow: 0 0 8px rgba(0,123,255,0.4);
        }

        button {
            width: 100%;
            padding: 12px;
            border-radius: 10px;
            border: none;
            cursor: pointer;
            font-weight: bold;
            font-size: 1rem;
            background-color: #007bff;
            color: white;
            transition: 0.3s;
        }

        button:hover {
            transform: scale(1.05);
        }

        /* ============================= */
        /* MENSAJES DE ERROR / INFO */
        /* ============================= */
        .error { color: red; font-size: 0.9rem; }
        .mensaje { color: blue; font-size: 1rem; margin-top: 15px; text-align: center; }