
        input{
            font-family: 'iran';
        }

        textarea{
            font-family: 'iran';
        }

        select{
            font-family: 'iran';
        }

  .signup-container {
            max-width: 1000px;
            margin: 20px auto;
            background-color: white;
            padding: 20px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
        }
.signup-header {
    background-color: hsl(15, 100%, 55%);
    
    color: white;
    text-align: center;
    padding: 15px;
    border-radius: 20px 20px 20px 20px;
    margin-bottom: 1rem;
}
        .signup-description {
            text-align: center;
            color: #555;
            margin: 10px 0;
            margin-bottom:2rem;
        }
        .signup-form-row {
            display: flex;
            justify-content: space-between;
            gap: 15px;
            margin-bottom: 15px;
        }
        .signup-form-group {
            flex: 1;
        }
        .signup-label {
            display: block;
            margin-bottom: 5px;
            color: #555;
        }
        .signup-input, .signup-select {
            width: 100%;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 16px;
        }
.signup-button {
    margin-top: 1rem;
    width: 25%;
    padding: 10px;
    background-color: hsl(229, 84%, 12%);
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 18px;
    cursor: pointer;
}
        .signup-button:hover {
            background-color: #6000cc;
        }
        @media (max-width: 768px) {
            .signup-form-row {
                flex-direction: column;
            }

            .signup-container {
                max-width: 380px;
            }
        }

        @media (max-width: 992px) {
            .featuers-left{
                margin-top:-5rem;
            }
        }


        .home2::before {
            content: '';
            position: absolute;
            top: -200px;
            left: -400px;
            width: 800px;
            height: 800px;
            border-radius: 50%;
            background: radial-gradient(ellipse at center, hsl(126, 100%, 50%, 0.30), transparent 70%);
        }

        .home2::after {
            content: '';
            position: absolute;
            top: 100px;
            right: -400px;
            width: 800px;
            height: 800px;
            border-radius: 50%;
            background: radial-gradient(ellipse at center, hsl(163, 100%, 50%, 0.30), transparent 70%);
        }


        .home2{
            margin-top:3rem;
        }


        /* Container styling for the comments section */
        .comments-section {
            width: 100%;
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
            background-color: #f9f9f9;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            direction: rtl;
            margin-bottom: 12rem;
        }

        /* Each comment block */
        .comment, .reply {
            margin-bottom: 20px;
            padding: 15px;
            background-color: #fff;
            border: 1px solid #ddd;
            border-radius: 5px;
        }

        /* Author and time for comments */
        .comment-header, .reply-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .comment-author, .reply-author {
            font-weight: bold;
            color: #333;
        }

        .comment-time, .reply-time {
            font-size: 12px;
            color: #777;
        }

        /* Body text for comments and replies */
        .comment-body, .reply-body {
            margin: 10px 0;
            line-height: 1.5;
            color: #555;
        }

        /* Reply button */
        .reply-button {
            background-color: #6A1B9A;
            color: #fff;
            border: none;
            padding: 8px 12px;
            font-size: 14px;
            cursor: pointer;
            border-radius: 4px;
            transition: background-color 0.3s;
        }

            .reply-button:hover {
                background-color: #5c1384;
            }

        /* Reply section */
        .replies {
            margin-top: 1rem;
            margin-right: 20px;
            padding-right: 15px;
            border-right: 5px solid #5c1384;
        }


        /* Comment form styles */
        .comment-form {
            margin-bottom: 30px;
            padding: 15px;
            background-color: #fff;
            border: 1px solid #ddd;
            border-radius: 5px;
        }

            .comment-form input, .comment-form textarea {
                width: 100%;
                margin-bottom: 10px;
                padding: 10px;
                font-size: 14px;
                border: 1px solid #ccc;
                border-radius: 4px;
            }

            .comment-form button {
                background-color: #6A1B9A;
                color: #fff;
                border: none;
                padding: 10px 15px;
                font-size: 14px;
                cursor: pointer;
                border-radius: 4px;
                transition: background-color 0.3s;
            }

                .comment-form button:hover {
                    background-color: #5c1384;
                }

        /* Reply form styles */
        .reply-form {
            margin-top: 10px;
            padding: 10px;
            background-color: #f7f7f7;
            border: 1px solid #ddd;
            border-radius: 4px;
        }

            .reply-form textarea {
                width: 100%;
                margin-bottom: 10px;
                padding: 10px;
                font-size: 14px;
                border: 1px solid #ccc;
                border-radius: 4px;
            }

            .reply-form button {
                background-color: #6A1B9A;
                color: #fff;
                border: none;
                padding: 8px 12px;
                font-size: 14px;
                cursor: pointer;
                border-radius: 4px;
                transition: background-color 0.3s;
            }

                .reply-form button:hover {
                    background-color: #5c1384;
                }


        /* Responsiveness */
        @media (max-width: 768px) {
            .comments-section {
                padding: 10px;
            }

            .reply {
                margin-left: 0;
            }
        }
