        :root {
            --maze-red: #E50000;
            --maze-dark-red: #C00000;
            --maze-black: #000000;
            --maze-white: #FFFFFF;
            --maze-light-gray: #F5F5F5;
            --maze-gray: #CCCCCC;
            --maze-dark-gray: #333333;
        }

        html.dark {
            --maze-light-gray: #222222;
            --maze-gray: #444444;
            --maze-dark-gray: #AAAAAA;
        }

        body {
            font-family: 'Arial', sans-serif;
            background-color: var(--maze-white);
            color: var(--maze-black);
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        .dark body {
            background-color: var(--maze-black);
            color: var(--maze-white);
        }

        .maze-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .maze-logo-landscape {
            max-width: 400px;
            height: auto;
            margin-bottom: 2rem;
            display: block;
        }

        .maze-logo-square {
            max-width: 150px;
            height: auto;
            margin-bottom: 2rem;
            display: none;
        }

        .error-code {
            font-size: 8rem;
            font-weight: bold;
            color: var(--maze-red);
            margin-bottom: 1rem;
            line-height: 1;
        }

        .error-title {
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 1.5rem;
        }

        .error-description {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto 2rem;
            color: var(--maze-dark-gray);
        }

        .maze-button {
            background-color: var(--maze-red);
            color: white;
            padding: 1rem 2rem;
            border-radius: 0.25rem;
            font-weight: bold;
            text-decoration: none;
            transition: background-color 0.3s ease;
            display: inline-block;
            margin: 0.5rem;
            border: none;
            cursor: pointer;
        }

        .maze-button:hover {
            background-color: var(--maze-dark-red);
        }

        .maze-button.secondary {
            background-color: var(--maze-light-gray);
            color: var(--maze-black);
        }

        .dark .maze-button.secondary {
            color: var(--maze-white);
        }

        .maze-button.secondary:hover {
            background-color: var(--maze-gray);
        }

        .maze-footer {
            margin-top: 3rem;
            color: var(--maze-dark-gray);
            font-size: 0.9rem;
        }

        .maze-error-image {
            max-width: 300px;
            margin: 2rem auto;
        }

        .maze-animation {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        /* Responsive styles */
        @media (max-width: 768px) {
            .maze-logo-landscape {
                display: none;
            }
            .maze-logo-square {
                display: block;
            }
            .error-code {
                font-size: 6rem;
            }
            .error-title {
                font-size: 1.5rem;
            }
            .error-description {
                font-size: 1rem;
            }
        }

        /* Maze pattern background */
        .maze-pattern {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: linear-gradient(to right, var(--maze-light-gray) 1px, transparent 1px),
                            linear-gradient(to bottom, var(--maze-light-gray) 1px, transparent 1px);
            background-size: 20px 20px;
            opacity: 0.1;
            z-index: -1;
        }
              :root {
            --maze-red: #E50000;
            --maze-dark-red: #C00000;
            --maze-black: #000000;
            --maze-white: #FFFFFF;
            --maze-light-gray: #F5F5F5;
            --maze-gray: #CCCCCC;
            --maze-dark-gray: #333333;
        }

        html.dark {
            --maze-light-gray: #222222;
            --maze-gray: #444444;
            --maze-dark-gray: #AAAAAA;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        body {
            background-color: var(--maze-light-gray);
            color: var(--maze-black);
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        .dark body {
            background-color: var(--maze-black);
            color: var(--maze-white);
        }

        .header {
            background-color: var(--maze-black);
            padding: 15px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .header img {
            height: 40px;
        }

        .container {
            max-width: 1200px;
            margin: 40px auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            padding: 0 20px;
        }

        .login-box {
            background-color: var(--maze-white);
            border-radius: 4px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 30px;
            max-width: 450px;
            width: 100%;
        }

        .dark .login-box {
            background-color: var(--maze-dark-gray);
        }

        .login-heading {
            color: var(--maze-black);
            margin-bottom: 30px;
            font-size: 24px;
            font-weight: bold;
        }

        .dark .login-heading {
            color: var(--maze-white);
        }

        .form-group {
            margin-bottom: 20px;
        }

        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--maze-dark-gray);
        }

        .dark label {
            color: var(--maze-light-gray);
        }

        input[type="text"],
        input[type="password"] {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid var(--maze-gray);
            border-radius: 4px;
            font-size: 16px;
            transition: border-color 0.3s ease;
        }

        input[type="text"]:focus,
        input[type="password"]:focus {
            border-color: var(--maze-red);
            outline: none;
        }

        .btn-login {
            width: 100%;
            padding: 14px;
            background-color: var(--maze-red);
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: background-color 0.3s ease;
        }

        .btn-login:hover {
            background-color: var(--maze-dark-red);
        }

        .lock-icon {
            margin-right: 8px;
        }

        .links {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
            margin-bottom: 30px;
        }

        .links a {
            color: var(--maze-red);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .links a:hover {
            text-decoration: underline;
        }

        .divider {
            border-top: 1px solid var(--maze-gray);
            margin: 30px 0;
        }

        .register-text {
            margin-top: 20px;
            text-align: left;
            font-size: 14px;
        }

        .register-link {
            color: var(--maze-red);
            text-decoration: none;
            font-weight: bold;
        }

        .register-link:hover {
            text-decoration: underline;
        }

        .security-text {
            font-size: 12px;
            color: var(--maze-dark-gray);
            margin-top: 20px;
        }

        .security-text a {
            color: var(--maze-red);
            text-decoration: none;
        }

        .security-text a:hover {
            text-decoration: underline;
        }

        .info-box {
            max-width: 350px;
            width: 100%;
        }

        .info-image {
            width: 100%;
            border-radius: 4px;
            margin-bottom: 15px;
        }

        .info-heading {
            font-weight: bold;
            font-size: 18px;
            margin-bottom: 10px;
            color: var(--maze-red);
        }

        .info-text {
            font-size: 14px;
            line-height: 1.5;
            margin-bottom: 15px;
            color: var(--maze-dark-gray);
        }

        .dark .info-text {
            color: var(--maze-light-gray);
        }

        .info-button {
            display: inline-block;
            padding: 8px 15px;
            background-color: transparent;
            color: var(--maze-red);
            border: 1px solid var(--maze-red);
            border-radius: 4px;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .info-button:hover {
            background-color: var(--maze-red);
            color: white;
        }

        .info-links {
            margin-top: 30px;
        }

        .info-links h3 {
            font-size: 16px;
            margin-bottom: 15px;
        }

        .info-links ul {
            list-style: none;
        }

        .info-links li {
            margin-bottom: 10px;
        }

        .info-links a {
            color: var(--maze-red);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
            display: block;
        }

        .info-links a:hover {
            text-decoration: underline;
        }

        .footer {
            background-color: var(--maze-black);
            color: white;
            text-align: center;
            padding: 15px;
            font-size: 12px;
            margin-top: 40px;
        }

        @media (max-width: 768px) {
            .container {
                flex-direction: column;
                align-items: center;
            }
            
            .login-box, .info-box {
                max-width: 100%;
            }
        }

        .eye-icon {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            color: var(--maze-gray);
        }

        .password-container {
            position: relative;
        }