#tooltip {
    position: absolute;
    background: #000000b9 !important;
    color: #ffffff !important;
    padding: 5px !important;
    border-radius: 5px !important;
    font-size: 12px !important;
    top: -60px !important;
    left: 0px !important;
    width: 100% !important;
    display: none;
}
    body {
        font-family: 'Poppins', sans-serif;
        display: flex;
        justify-content: center;
        background: #F4F4F4;
        margin: 0;
        padding: 0;
    }

    .form-wrapper {
        display: flex;
        align-items: stretch;
        background: white;
        padding: 0;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        width: 100%;
    }

    .image-container {
        width: 50%;
        height: auto;
        min-height: 300px;
    }

    .image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .form-container {
        align-items: center;
        width: 50%;
        padding: 20px;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .form-container img {
        width: 250px;
    }

    h2 {
        margin-bottom: 5px;
        color: #007608;
        font-weight: 600;
    }

    p {
        color: black;
        font-size: 14px;
        margin-bottom: 15px;
    }

    .input-group {
        position: relative;
        margin-bottom: 8px;
        display: flex;
        align-items: center;
    }

    .input-group input,
    .input-group select,
    .input-group textarea {
        width: 100%;
        padding: 6px 5px 6px 45px;
        border-radius: 5px;
        border: 1px solid #ddd;
        outline: none;
        font-family: 'Poppins', sans-serif;
        transition: box-shadow 0.3s ease-in-out;
    }

    .input-group input:focus,
    .input-group select:focus,
    .input-group textarea:focus {
        box-shadow: 0 0 5px #007608;
        border-color: #007608;
    }

    .input-group i {
        position: absolute;
        left: 15px;
        color: #007608;
        font-size: 18px;
        top: 50%;
        transform: translateY(-50%);
    }

    .input-group.textarea-group i {
        top: 12px;
        transform: none;
    }

    .row .input-group {
        width: 100%;
    }

    button {
        background: linear-gradient(45deg, #007608, #004b04);
        color: white;
        font-size: 16px;
        border: none;
        padding: 6px;
        border-radius: 5px;
        cursor: pointer;
        transition: background 0.3s;
        width: 100%;
    }

    button:hover {
        background: linear-gradient(45deg, #004b04, #003802);
    }

    .terms {
        font-size: 12px;
        color: #777;
        margin-top: 10px;
    }

    form {
        width: 80%;
    }

    @media (max-width: 768px) {
        body {
            overflow: auto;
        }

        .form-wrapper {
            flex-direction: column;
            height: auto;
        }

        .form-container {
            width: 100%;
            padding: 10px;
        }

        .image-container {
            width: 100%;
            overflow: hidden;
        }

        .image-container img {
            width: 100vw;
        }

        .image-container {
            flex: none;
            height: 200px;
        }

        .input-group input,
        .input-group select,
        .input-group textarea {
            font-size: 10px;
        }

        h2 {
            font-size: 22px;
        }

        .form-container img {
            width: 180px;
        }
    }

    /* .form-container img{
size: 15vw;
     } */
    .inputgroup1 {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .inputgroup1 .input-group {
        width: 48%;
    }

    .inputgroup1 select {
        width: 100%;
    }

    .inputgroup1 input {
        width: 100%;
    }
    textarea {
overflow: hidden; /* Hides both horizontal and vertical scrollbars */
resize: none;     /* Optional: Disables resizing of the textarea */
}

/* Webkit browsers (Chrome, Safari, Edge) */
textarea::-webkit-scrollbar {
display: none; /* Hides the scrollbar */
}

/* Firefox */
textarea {
scrollbar-width: none; /* Hides scrollbar in Firefox */
}
.swal2-styled.swal2-confirm {
    background-color: #197500 !important;
    outline: none !important;
}
.swal2-styled.swal2-confirm:focus {
    box-shadow: none !important;
}