        /* Estilo general del cuerpo */
        body {

            background-size: cover;
            background-repeat: no-repeat;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            padding: 0;
            min-height: 100vh;

            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }

        .titulo {
            position: fixed;         /* Hace que el título quede fijo en la parte superior */
            top: 0;                  /* Lo coloca en el borde superior */
            left: 0;
            width: 100%;             /* Ocupa todo el ancho de la pantalla */
                                     /* Color de fondo para que no se mezcle con el fondo principal */
            text-align: center;
            color: white;
            padding: 12px 0;
            font-size: 24px;
            z-index: 1000;           /* Asegura que quede por encima de otros elementos */
        }
        .nombre-usuario{
            color: white;
        }

        .contenedor {
            width: 90%;
            max-width: 600px;
            padding: 30px;
            border-radius: 12px;
            background-color: rgba(0, 0, 0, 0.5);
        }

        .formulario {
            color: white;
            margin-bottom: 20px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .formulario input {
            padding: 6px 10px;
            font-size: 14px;
            width: 60%;
            max-width: 250px;
            margin: 0 auto;
            border-radius: 6px;
            border: none;
        }

        .formulario button {
            padding: 6px 14px;
            font-size: 14px;
            width: fit-content;
            align-self: center;
            background-color: #540c65;
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
        }

        .formulario button:hover {
            background-color: #6b2a7f;
        }

        .boton-descarga {
            display: flex;
            flex-direction: row; /* Alinea los elementos en fila */
            align-items: center; /* Alinea el texto y el botón verticalmente al centro */
            justify-content: space-between; /* Empuja los elementos a los extremos (izquierda y derecha) */
            gap: 10px; /* Espacio entre el texto y el botón */
            background-color: #540c65;
            padding: 5px 10px; /* Menos padding para reducir la altura */
            margin-bottom: 10px;
            border-radius: 8px;
            width: 100%;
            max-width: 400px;
            margin-left: auto;
            margin-right: auto;
            font-size: 10px;
        }
        .boton-descarga span {
            font-size: 16px;
            color: white;
        }

        .boton-descarga a {
            margin-left: auto; /* Empuja el botón a la derecha */
            background-color: #a4c615;
            color: white;
            padding: 8px 12px;
            border-radius: 6px;
            text-decoration: none;
            font-size: 12px;
        }

        .boton-descarga a:hover {
            background-color: #0056b3;
        }

        @media (max-width: 480px) {
            .titulo {
                font-size: 20px;
            }
            .formulario label,
            .formulario input,
            .formulario button {
                width: 100%;
                font-size: 16px;
            }
            .boton-descarga {
                font-size: 16px;
            }
        }


        @media (min-width: 768px) {
            .contenedor {
                margin-left: auto;
                margin-right: 10%;
            }
        }