            /* استایل برای دکمه باز کردن فرم */


            #openModalBtn:hover {
                background-color: #2980b9;
            }

            /* استایل برای پس‌زمینه مدال */
            .modal {
                display: none;
                /* پنهان به صورت پیش‌فرض */
                position: fixed;
                z-index: 1000;
                left: 0;
                top: 0;
                width: 100%;
                height: 100%;
                overflow: auto;
                background-color: rgba(0, 0, 0, 0.5);
                /* پس‌زمینه شفاف سیاه */
            }

            /* استایل برای محتوای مدال */
            .modal-content {
                background-color: #fff;
                margin: 10% auto;
                /* از بالا 10% فاصله و در مرکز صفحه */
                padding: 20px 30px;
                border-radius: 8px;
                width: 90%;
                max-width: 400px;
                box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
                position: relative;
                animation: fadeIn 0.5s;
            }

            /* انیمیشن ورود مدال */
            @keyframes fadeIn {
                from {
                    opacity: 0;
                    transform: translateY(-20px);
                }

                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            /* استایل برای دکمه بستن مدال */
            .close {
                position: absolute;
                top: 10px;
                right: 15px;
                color: #aaa;
                font-size: 28px;
                font-weight: bold;
                cursor: pointer;
            }

            .close:hover {
                color: #000;
            }

            /* استایل برای فرم ثبت‌نام */
            .modal-content h2 {
                text-align: center;
                margin-bottom: 20px;
            }

            .form-group {
                margin-bottom: 15px;
            }

            .form-group label {
                display: block;
                margin-bottom: 5px;
                font-weight: bold;
            }

            .form-group input {
                width: 100%;
                padding: 10px;
                border: 1px solid #ddd;
                border-radius: 4px;
                box-sizing: border-box;
            }

            .submit-btn {
                background-color: #27ae60;
                color: #fff;
                border: none;
                padding: 10px;
                border-radius: 4px;
                cursor: pointer;
                font-size: 16px;
                width: 100%;
            }

            .submit-btn:hover {
                background-color: #1e8449;
            }