   /* Desktop Registration Container */
        .desktop-register-container {
            background-color: #fff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            max-width: 500px; /* Slightly wider for more inputs */
            width: 100%;
            text-align: center;
        }

        .desktop-register-container .logo {
            font-size: 2.5em;
            color: #007bff;
            margin-bottom: 10px;
        }

        .desktop-register-container .tagline {
            font-size: 1.1em;
            color: #666;
            margin-bottom: 25px;
        }

        /* Form Styling (shared between desktop and modal) */
        .login-form .input-group {
			margin-left: 34%;
			width: 30%;
            margin-bottom: 15px; /* Slightly less space due to more inputs */
            display: flex;
            align-items: center;
            border: 1px solid #ddd;
            border-radius: 10px;
            padding: 5px 10px; /* Adjust padding */
        }

        .login-form .input-group input,
        .login-form .input-group select {
            border: none;
            outline: none;
            flex-grow: 1;
            font-size: 16px;
            padding: 8px 0; /* Adjust padding */
           width: 30%;
  text-align: center;
  border-radius: 10px;
            background-color: transparent; /* Match background */
        }

        .login-form .input-group i {
            margin-right: 10px;
            color: #555;
        }

        .btn {
            padding: 12px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 18px;
            transition: background-color 0.3s ease;
        }

        .btn-primary {
            background-color: #28a745; /* Green for Sign Up */
            color: white;
            width: 30%;
			margin-left: 34%;
            display: block;
            margin-top: 25px;
        }

        .btn-primary:hover {
            background-color: #218838;
        }

        .links {
            text-align: center;
            margin-top: 25px;
            font-size: 14px;
        }

        .links a {
            color: #007bff;
            text-decoration: none;
        }

        .links a:hover {
            text-decoration: underline;
        }

        .separator {
            margin: 0 10px;
            color: #ccc;
        }

        .links .signup-link,
        .links .login-link { /* Using .login-link for the "Already have an account?" text */
            font-size: 20px !important; /* Override default font size */
        }

        /* Terms and conditions link */
        form p {
            font-size: 0.9em;
            color: #777;
            margin-top: 20px;
        }
        form p a {
            color: #007bff;
            text-decoration: none;
        }
        form p a:hover {
            text-decoration: underline;
        }

        /* Mobile Register Button (hidden on desktop) */
        #mobileRegisterTrigger {
            display: none; /* Hidden by default, shown on mobile */
            padding: 15px 30px;
            font-size: 18px;
            background-color: #28a745;
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }

        /* Modal Styles */
        .modal {
            display: none; /* Hidden by default */
            position: fixed; /* Stay in place */
            z-index: 1000; /* Sit on top */
            left: 0;
            top: 0;
            width: 100%; /* Full width */
            height: 100%; /* Full height */
            overflow: auto; /* Enable scroll if content overflows */
            background-color: rgba(0,0,0,0.8); /* Darker background for fullscreen focus on desktop (if shown) */
            display: flex; /* Use flexbox for centering */
            justify-content: center;
            align-items: center;
        }

        .modal-content {
			height: 90%;
			overflow: scroll;
            background-color: #fff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            width: 90%; /* Start with a responsive width for desktop modal */
           width: 90%;
            position: relative;
            animation: fadeInScale 0.3s ease-out forwards;
            text-align: center; /* Center logo and tagline inside modal */
        }

        .modal-content .logo,
        .modal-content .tagline {
            margin-bottom: 15px; /* Adjust spacing for modal */
        }

        .close-button {
            color: #aaa;
            float: right;
            font-size: 40px;
            font-weight: bold;
            position: absolute;
            top: 10px;
            right: 15px;
            cursor: pointer;
            transition: color 0.3s;
        }

        .close-button:hover,
        .close-button:focus {
            color: #333;
            text-decoration: none;
            cursor: pointer;
        }

        /* Media Queries for Mobile Responsiveness */
        @media (max-width: 768px) {
			.links {margin-bottom: 30%;}
			.login-form .input-group {
				width: 100%;
				margin-left: 0;
			}
			
            .desktop-register-container {
                display: none; /* Hide desktop form on mobile */
            }

            #mobileRegisterTrigger {
                display: block; /* Show mobile register button */
            }

            .modal {
                /* On mobile, make modal truly fullscreen */
                width: 100vw; /* Viewport width */
                height: 100vh; /* Viewport height */
                top: 0;
                left: 0;
                margin: 0; /* Remove any default margins */
                border-radius: 0; /* No rounded corners for fullscreen */
                background-color: #fff; /* White background for a clean fullscreen look */
                padding: 0; /* Remove padding from the modal overlay itself */
                display: flex; /* Ensure flex for centering its content */
                justify-content: center;
                align-items: center;
            }

            .modal-content {
                /* On mobile, the content fills most of the screen within the modal */
                width: 100%; /* Full width of the modal (which is now fullscreen) */
                height: 100%; /* Full height of the modal */
                max-width: none; /* Override max-width set for desktop */
                max-height: none; /* Allow content to use full height */
                border-radius: 0; /* No rounded corners for content when modal is fullscreen */
                box-shadow: none; /* No shadow for fullscreen */
                padding: 20px; /* Padding for the form inside the fullscreen modal */
                overflow-y: auto; /* Enable scrolling if content overflows */
                display: flex; /* Make content itself a flex container */
                flex-direction: column; /* Stack items vertically */
                justify-content: flex-start; /* Align content to top for longer forms */
            }

            .modal-content .logo {
                margin-top: 20px; /* Space from top for logo */
                margin-bottom: 10px;
            }

            .modal-content .tagline {
                margin-bottom: 25px;
            }

            .modal-content .login-form {
                width: 100%; /* Ensure form takes full width */
                max-width: 400px; /* Optional: limit form width slightly within fullscreen modal */
                margin: 0 auto; /* Center the form horizontally */
                padding-bottom: 20px; /* Add some space at the bottom */
            }

            /* Adjust close button for fullscreen mobile modal */
            .close-button {
                position: fixed; /* Fix to viewport */
                top: 15px;
                right: 15px;
                z-index: 1001; /* Ensure it's above the modal content */
                color: #333; /* Make it clearly visible on white background */
            }
        }

        /* Animation for modal */
        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }
  
        /* Progress bar specific styles */
        .progress-bar-container {
            width: 30%;
			margin-left: 34%;
            background-color: #e0e0e0;
            border-radius: 5px;
            margin-bottom: 1%;
            height: 10px; /* Height of the progress bar */
            overflow: hidden;
        }

        .progress-bar-fill {
            height: 100%;
            width: 0%; /* Initial width */
            background-color: #4CAF50; /* Green color */
            border-radius: 5px;
            transition: width 0.3s ease-in-out; /* Smooth transition */
        }
