
        /* Login Button */
        .login-button {
            padding: 1rem 2rem;
            background-color: #ff4c00;
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            cursor: pointer;
           
            display: inline-block;
        }

        

        /* Loading Spinner */
        .spinner {
            display: inline-block;
            width: 15px;
            height: 15px;
            border: 3px solid #fff;
            border-top: 3px solid #ff4c00;
            border-radius: 50%;
            animation: spin 0.6s linear infinite;
            margin-left: 10px;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Error Message */
        .error-message {
            color: #FF0000;
            background: #FFECEC;
            border: 1px solid #FFCCCC;
            border-radius: 5px;
            padding: 0.8rem;
            margin-top: 1rem;
            display: none;
        }

        /* Modal Overlay */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            justify-content: center;
            align-items: center;
            z-index: 9999;
        }

        /* Modal Content */
        .modal-content {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            position: relative;
            width: 90%;
            max-width: 400px;
        }

        .modal-content h2 {
            margin-bottom: 1rem;
        }

        .modal-content input {
            padding: 0.8rem;
            width: 90%;
            border: 1px solid #ddd;
            border-radius: 5px;
            margin-bottom: 1rem;
            font-size: 1rem;
        }

        .modal-content button {
            padding: 0.8rem 1.5rem;
            background-color: #ff4c00;
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 1rem;
            cursor: pointer;
        }

        .modal-content button:hover {
            background-color: #ff4c00;
        }

        /* Close Button */
        .close-button {
            position: absolute;
            top: 10px;
            right: 10px;
            background: none;
            border: none;
            font-size: 15px;
            color: white;
            background: #ff4c00;
            cursor: pointer;
            padding: 5px 5px;
        }

        