      /* General styles for form section */
      .formbackcolor {
        background-color: #f9f9f9;
        padding: 40px 20px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        max-width: 800px;
        margin: 40px auto;
    }

    /* Heading */
    .heading {
        text-align: center;
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 30px;
        color: #333;
    }

    /* Form container styles */
    .form-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    /* Input row styling */
    .input-row {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: space-between;
        width: 100%;
        margin-bottom: 20px;
    }

    /* Input fields styles */
    .inputboxes {
        width: 100%;
        padding: 10px 15px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 1rem;
    }

    /* Responsive design for larger screens */
    @media (min-width: 768px) {
        .input-row {
            flex-direction: row;
        }

        .inputboxes {
            width: calc(50% - 15px);
        }

        #message {
            width: 100%;
        }
    }

    /* Button styles */
    .call-action-primary-btn {
        background-color: #007bff;
        color: #fff;
        padding: 10px 20px;
        border: none;
        border-radius: 5px;
        font-size: 1.2rem;
        cursor: pointer;
        transition: background-color 0.3s ease;
        width: 100%;
        max-width: 250px;
    }

    .call-action-primary-btn:hover {
        background-color: #0056b3;
    }

    /* Input group for centering button */
    .input-group {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    .mytop{
        margin-top:10rem;
    }

    @media screen and (max-width:991px) {
        .mytop{
        margin-top:3rem;
    }
    }