body {
            margin: 0;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            background: linear-gradient(180deg, #0a0a23, #1a1a3a);
            overflow: hidden;
            position: relative;
        }

        #particles {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }

        .forgot-password-container {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            padding: 1.5rem;
            border-radius: 0.5rem;
            box-shadow: 0 0 20px rgba(0, 255, 204, 0.15);
            width: 20rem;
            z-index: 2;
        }

        .submit-button {
            width: 100%;
            padding: 0.5rem;
            font-size: 1rem;
            font-family: 'Arial', sans-serif;
            color: #fff;
            background: transparent;
            border: 2px solid #00ffcc;
            border-radius: 25px;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .submit-button:hover {
            background: #00ffcc;
            color: #0a0a23;
            box-shadow: 0 0 20px #00ffcc, 0 0 40px #00ffcc;
            transform: scale(1.05);
        }

        .submit-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
        }

        .submit-button:hover::before {
            left: 100%;
        }

        .submit-button:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        .input-field {
            position: relative;
            margin-bottom: 1rem;
        }

        .input-field input {
            width: 100%;
            padding: 0.5rem 2.5rem;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 0.25rem;
            background: rgba(255, 255, 255, 0.03);
            color: #fff;
            transition: border-color 0.3s ease;
        }

        .input-field input:focus {
            outline: none;
            border-color: #00ffcc;
            box-shadow: 0 0 10px rgba(0, 255, 204, 0.5);
        }

        .input-field input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .input-field i {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: rgba(255, 255, 255, 0.6);
            z-index: 10;
        }
        
        .input-field i.fa-envelope, .input-field i.fas fa-lock {
            left: 0.75rem;
        }

        #error-message {
            background: rgba(255, 0, 0, 0.15);
            border: 1px solid rgba(255, 0, 0, 0.4);
            color: #ff9999;
            padding: 0.5rem;
            border-radius: 0.25rem;
            margin-bottom: 1rem;
        }

        footer {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.75rem;
            text-align: center;
            margin-top: 0.5rem;
        }

        h1 {
            color: #fff;
            text-shadow: 0 0 2px rgba(0, 255, 204, 0.3);
        }

        .auth-links {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
        }

        .auth-links a {
            color: #00ffcc;
            font-size: 0.9rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .auth-links a:hover {
            color: #ffffff;
            text-shadow: 0 0 5px #00ffcc;
        }

        .flyby-text {
            position: absolute;
            font-size: 0.9rem;
            font-family: monospace;
            color: #00ffcc;
            text-shadow: 0 0 5px #00ffcc;
            white-space: nowrap;
            opacity: 0;
            z-index: 0;
            transition: opacity 0.5s ease;
        }

        .fly-away-right {
            animation: fly-away-right 25s linear infinite;
        }

        .fly-away-left {
            animation: fly-away-left 25s linear infinite;
        }

        .fly-away-down {
            animation: fly-away-down 25s linear infinite;
        }

        .fly-away-up {
            animation: fly-away-up 25s linear infinite;
        }

        #flybyText {
            opacity: 0.6;
        }

        #QsgText {
            animation-delay: 12.5s;
        }

        @keyframes fly-away-right {
            0% {
                left: 100%;
                top: 50%;
                opacity: 0.6;
                transform: translate(0, -50%);
            }

            80% {
                left: 50%;
                top: 50%;
                opacity: 0;
                transform: translate(-50%, -50%) scale(0.5);
            }

            100% {
                left: 50%;
                top: 50%;
                opacity: 0;
                transform: translate(-50%, -50%) scale(0.5);
            }
        }

        @keyframes fly-away-left {
            0% {
                left: -10%;
                top: 50%;
                opacity: 0.6;
                transform: translate(0, -50%);
            }

            80% {
                left: 50%;
                top: 50%;
                opacity: 0;
                transform: translate(-50%, -50%) scale(0.5);
            }

            100% {
                left: 50%;
                top: 50%;
                opacity: 0;
                transform: translate(-50%, -50%) scale(0.5);
            }
        }

        @keyframes fly-away-down {
            0% {
                top: -10%;
                left: 50%;
                opacity: 0.6;
                transform: translate(-50%, 0);
            }

            80% {
                top: 50%;
                left: 50%;
                opacity: 0;
                transform: translate(-50%, -50%) scale(0.5);
            }

            100% {
                top: 50%;
                left: 50%;
                opacity: 0;
                transform: translate(-50%, -50%) scale(0.5);
            }
        }

        @keyframes fly-away-up {
            0% {
                top: 100%;
                left: 50%;
                opacity: 0.6;
                transform: translate(-50%, 0);
            }

            80% {
                top: 50%;
                left: 50%;
                opacity: 0;
                transform: translate(-50%, -50%) scale(0.5);
            }

            100% {
                top: 50%;
                left: 50%;
                opacity: 0;
                transform: translate(-50%, -50%) scale(0.5);
            }
        }

        @media (max-width: 767px) {
            .flyby-text {
                font-size: 0.7rem;
            }

            .forgot-password-container {
                width: 16rem;
                padding: 1rem;
            }

            .fly-away-right,
            .fly-away-left,
            .fly-away-down,
            .fly-away-up {
                animation-duration: 20s;
            }

            #QsgText {
                animation-delay: 10s;
            }

            .auth-links a {
                font-size: 0.8rem;
            }
        }