
        /* Basic styling */
        body,
        html {
            height: 100%;
            margin: 0;
            font-family: Arial, sans-serif;
            background-color: #80a0c1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .container {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 100vh;
            /* Ensure container stretches to at least full viewport height */
        }

        header {
            padding: 20px;
            background-color: #80a0c1;
            color: black;
            display: flex;
            justify-content: center;
            align-items: center;
            /* Center items vertically */
            flex-wrap: wrap;
            /* Allow wrapping on smaller screens */
            text-align: center;
        }

        .header-content {
            max-width: 1200px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            flex-wrap: wrap;
        }

        .header-content .logo {
            width: 150px;
            height: auto;
            margin-right: 20px;
        }

        .header-content h1 {
            margin: 5px 0;
            /* Adjusted margin for better spacing */
            text-align: center;
        }

        main {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: left;
            padding: 20px;
        }

        .instructions {
        position: relative;
        width: 100%;
        max-width: 1200px;
        height: 400px;
        background-color: #80a0c1;
        border-radius: 10px;
        overflow: hidden;
        padding: 0;
        box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }

        .scroll-content {
        height: 100%;
        overflow: hidden;
        position: relative;
        }

        .scroll-inner {
        display: flex;
        flex-direction: column;
        animation: scrollUp 10s linear infinite;
        }

        /* Keyframe animation for continuous scroll */
        @keyframes scrollUp {
        0% {
            transform: translateY(0);
        }
        100% {
            transform: translateY(-50%);
        }
        }

        .instructions-inner {
        padding: 30px;
        color: #000;
        }

        /* Hide scrollbars globally */
        .scroll-content::-webkit-scrollbar,
        .scroll-inner::-webkit-scrollbar {
        display: none;
        }
        .scroll-content, .scroll-inner {
        -ms-overflow-style: none;
        scrollbar-width: none;
        }

        /* Pause animation on hover */
        #scrollBox:hover .scroll-inner,
        #scrollBox:focus-within .scroll-inner {
        animation-play-state: paused;
        }



        footer {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 20px;
            background-color: #80a0c1;
            color: white;
        }

        .login-box {
            background-color: #004080;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            text-align: center;
            max-width: 400px;
            width: 100%; 
            /* Added margin for spacing */
        }

        .login-box h2 {
            color: #f5f0f0;
        }

        .input-group {
            margin: 10px 0;
            /* Increased margin for better spacing */
        }

        .input-group label {
            display: block;
            margin: 5px 15px;
            text-align: left;
            /* Align label to the left */
            color: #f5f0f0;
        }

        .input-group input {
            width: calc(100% - 22px);
            /* Adjust width to account for padding */
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
            box-sizing: border-box;
            /* Ensure padding is included in width */
        }

        button {
            padding: 10px 20px;
            background-color: #758595;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            margin-top: 10px;
            /* Added margin for better spacing */
        }

        button:hover {
            background-color: #003366;
        }

        .language-selector {
            text-align: center;
            margin-top: 20px;
            color: rgb(52, 45, 45);
        }

        .language-selector label {
            margin-right: 10px;
        }

        .language-selector select {
            padding: 5px;
            border-radius: 5px;
            border: 1px solid #ccc;
        }

        .watermark {
            position: fixed; /* Use fixed to keep it centered even on scroll */
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) rotate(-45deg); /* Perfect center with diagonal style */
            font-size: 80px;
            color: rgba(0, 0, 0, 0.1); /* Lighter for subtlety */
            pointer-events: none;
            user-select: none;
            text-align: center;
            padding: 5px; /* Padding all around */
            max-width: 80vw; /* Prevent overflow on smaller screens */
            word-break: break-word;
            z-index: 0;
        }


        @media (max-width: 768px) {
            header {
                flex-direction: column;
                /* Stack elements vertically */
                text-align: center;
            }

            .header-content .logo {
                margin: 0 auto 10px;
                /* Center logo horizontally and add margin below */
            }

            .header-content h1 {
                margin-bottom: 10px;
                /* Adjust margin below h1 elements */
            }

            .login-box {
                padding: 15px;
                /* Adjust padding for smaller screens */
            }

            .input-group label {
                margin: 5px 0;
                /* Adjust margin for better fit */
            }

            .input-group input {
                width: 100%;
                /* Full width for input fields */
            }

            .language-selector {
                margin-top: 15px;
                /* Adjusted margin for spacing */
            }
        }
