        /* General Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html,
        body {
            height: 100%;
            width: 100%;
            font-family: 'Arial', sans-serif;
            overflow-x: hidden;
        }

        body {
            background-color: #f4f4f4;
            padding: 10px;
        }

        /* Form Container */
        .form-container {
            width: 100%;
            max-width: 1200px;
            background: #ffffff;
            padding: 20px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            position: relative;
            display: flex;
            flex-direction: column;
            margin: 0 auto;
        }

        /* Logo Section (aligned to the right) */
        .logo {
            position: absolute;
            top: 10px;
            right: 20px;
            z-index: 10;
        }

        .logo img {
            max-width: 100px;
            height: auto;
        }

        /* Form Header */
        .form-header {
            text-align: left;
            margin-bottom: 20px;
            margin-top: 60px;
            /* Added margin to ensure space for the logo */
        }

        .form-header h2 {
            font-size: 24px;
            font-weight: 700;
            color: #333;
        }

        .column {
            flex: 1;
            min-width: 300px;
        }

        /* Form Group */
        .form-group {
            margin-bottom: 15px;
        }

        label {
            display: block;
            font-size: 14px;
            color: #333;
            margin-bottom: 5px;
        }

        input[type="text"],
        input[type="email"],
        select,
        textarea {
            width: 100%;
            padding: 10px;
            font-size: 14px;
            border: 1px solid #ccc;
            border-radius: 5px;
            outline: none;
        }

        textarea {
            height: 40px;
            /* Decreased height of the textarea */
            resize: none;
            /* Prevent resizing */
        }

        /* Footer Buttons and Captcha */
        .form-footer {
            display: flex;
            justify-content: flex-end;
            margin-top: 20px;
            /* Adjusted margin */
            flex-wrap: wrap;
        }

        .submit-btn {
            background-color: #3b3b8c;
            color: #fff;
            padding: 5px 10px;
            font-size: 16px;
            font-weight: bold;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
            margin-right: -10px;
        }

        .submit-btn:hover {
            background-color: #2a2a6a;
        }

        /* Form Content */
        .form-content {
            display: flex;
            gap: 20px;
            margin-top: 20px;
            flex-wrap: wrap;
            justify-content: space-between;
            /* Allow space between columns */
        }

        /* Unique ID Display */
        .unique-id {
            margin-top: 20px;
            font-size: 16px;
            color: #333;
            font-weight: bold;
        }

        /* CAPTCHA Styles */
        .captcha-container {
            display: flex;
            flex-direction: column;
            margin-top: 20px;
            align-items: flex-end;
            /* Aligns items to the right */
        }

        .captcha-image {
            display: flex;
            flex-direction: row;
            gap: 10px;
            /* Reduced gap for better spacing */
            justify-content: flex-end;
            /* Aligns CAPTCHA and refresh button to the right */
            width: 100%;
            /* Full width for better responsiveness */
        }

        .captcha-box {
            padding: 10px;
            text-align: center;
            font-size: 26px;
            letter-spacing: 2px;
            font-weight: bold;
            width: auto;
            /* Allow width to adjust based on content */
            font-family: 'Gloock', sans-serif;
            transform: rotate(-12deg) skewX(-45deg);
            color: #3a3a3a;
        }

        .refresh-btn {
            cursor: pointer;
            padding: 5px;
            border: none;
            background-color: #f0f0f0;
            border-radius: 5px;
        }

        .refresh-btn img {
            width: 20px;
            height: 20px;
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .logo {
                position: relative;
                /* Change to relative to avoid overlap */
                margin-bottom: 10px;
                /* Add margin below the logo */
                margin-left: 20px;
                top: 0;
                /* Reset top position */
            }

            .form-header {
                margin-top: 20px;
                /* Reduce margin on smaller screens */
            }

            .form-content {
                flex-direction: column;
                /* Stack columns vertically */
                gap: 10px;
                /* Reduce gap between elements */
            }

            .inputBox {
                width: 100%;
                /* Full width for input boxes */
            }

            .captcha-container {
                flex-direction: row;
                /* Align CAPTCHA and input in a row */
                justify-content: space-between;
                /* Space between elements */
                width: 100%;
                /* Full width */
            }

            .captcha-image {
                width: auto;
                /* Adjust CAPTCHA image width */
                justify-content: flex-end;
                /* Align to the right */
            }

            .captcha-box {
                font-size: 20px;
                /* Smaller font size for mobile */
            }
        }

        @media (max-width: 480px) {
            .logo img {
                max-width: 80px;
                /* Reduce logo size for very small screens */
                margin-left: 20px;
            }

            .form-header h2 {
                font-size: 20px;
                /* Adjust header font size */
                margin-top: 10px;
            }

            .captcha-box {
                font-size: 18px;
                /* Further reduce font size for very small screens */
            }

            .inputBox {
                font-size: 16px;
                /* Adjust input font size */
            }
        }