 /* * Estilos Actualizados: Negro y Dorado Elegante
         */

        body {
            /* CAMBIO: Aquí agregas tu imagen de fondo */
            background-image: url('dragon.jpg'); 
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
            
            /* Color de respaldo si la imagen no carga */
            background-color: #000000; 
            
            font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; /* Fuente más elegante */
            color: #FFFFFF;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
        }

        /* Capa oscura sobre el fondo para que el formulario resalte */
        body::before {
            content: "";
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0, 0, 0, 0.6); /* Oscurece un poco la imagen de fondo */
            z-index: -1;
        }

        #logo h1 {
            color: #D4AF37; /* Dorado Metálico */
            text-shadow: 2px 2px 8px #000000;
            font-size: 3em;
            margin-bottom: 20px;
            font-style: italic;
            font-family: 'Times New Roman', Times, serif;
        }

        #fade-box {
            background-color: rgba(20, 20, 20, 0.9); /* Negro casi opaco */
            padding: 40px;
            border-radius: 10px;
            border: 1px solid #D4AF37; /* Borde dorado fino */
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 15px rgba(212, 175, 55, 0.2);
            width: 350px;
            text-align: center;
        }

        input[type="text"], input[type="password"] {
            width: 100%;
            padding: 12px;
            margin: 15px 0;
            background-color: #1a1a1a;
            border: 1px solid #444;
            border-radius: 4px;
            color: #D4AF37; /* Texto que escribes sale en dorado */
            font-size: 1em;
            box-sizing: border-box;
            outline: none;
            transition: border-color 0.3s;
        }

        input[type="text"]:focus, input[type="password"]:focus {
            border-color: #D4AF37; /* Resalte dorado al hacer clic */
        }

        /* Color del placeholder (el texto de fondo de los inputs) */
        ::placeholder {
            color: #888;
        }

        button {
            background-color: #D4AF37; /* Fondo Dorado */
            color: #000000; /* Texto Negro */
            padding: 15px;
            margin-top: 20px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            width: 100%;
            font-size: 1.1em;
            font-weight: bold;
            text-transform: uppercase;
            transition: all 0.3s ease;
        }

        button:hover {
            background-color: #f1c40f; /* Dorado más brillante */
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
            transform: translateY(-2px);
        }