        .input-group-append 
       {
            position: absolute;
            right: 40px;
            top: 0;
            bottom: 0;
            
        }
        body {
            font-family: "Lato", sans-serif;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .main-body {
            display: flex;
            width: 70%;
            margin: auto;
            padding: 100px 0px;
        }

        .sidenav {
            flex: 1;          
            display: flex;
            align-items: center;
            justify-content: center;
            background: #ff9334;
        }

        .sidenav img {
            max-width: 70%;
           
        }

        .main {
            flex: 1;
            display: flex;            
            justify-content: center;
        }

        /* Form styles */
.modal-content {
    background-color: #f6f6f6;
    width: -webkit-fill-available;
}

        /* Full-width input fields */
        input[type=email],input[type=text],
        input[type=password] {
            width: 100%;
            padding: 12px 20px;
            margin: 8px 0;
            display: inline-block;
            border: 1px solid #ccc;
            box-sizing: border-box;
        }

        /* Set a style for all buttons */
        button {
            background-color: #10572d;
            color: white;
            padding: 13px 20px;
            margin: 8px 0;
            font-size: large;
            border: none;
            cursor: pointer;
            width: 100%;
            font-family: system-ui;
            /* font-weight: 700; */
            border-radius: 3px;
        }


        /* Extra styles for the cancel button */
        .cancelbtn {
            width: auto;
            padding: 10px 18px;
            background-color: #f44336;
        }

        /* Center the image and position the close button */
        .imgcontainer {
            text-align: center;
            margin: 24px 0 12px 0;
            position: relative;
        }



        span.psw {
            float: left;
            padding-top: 0px;
            margin: 6px 0px;
                }

        /* The Modal (background) */
        .modal {
            display: none;
            /* Hidden by default */
            position: fixed;
            /* Stay in place */
            z-index: 1;
            /* Sit on top */
            left: 0;
            top: 0;
            width: 100%;
            /* Full width */
            height: 100%;
            /* Full height */
            overflow: auto;
            /* Enable scroll if needed */
            background-color: rgba(0, 0, 0, 0.4);
            /* Black w/ opacity */
            padding-top: 60px;
        }

        /* The Close Button (x) */
        .close {
            position: absolute;
            right: 25px;
            top: 0;
            color: #000;
            font-size: 35px;
            font-weight: bold;
        }


        /* Add Zoom Animation */
        @keyframes animatezoom {
            from {
                transform: scale(0)
            }

            to {
                transform: scale(1)
            }
        }

        /* Change styles for span and cancel button on extra small screens */
        @media screen and (max-width: 300px) {
            span.psw {
                display: block;
                float: none;
            }

            .cancelbtn {
                width: 100%;
            }
        }

        .form-container {
            background-color: #f6f6f6;
            padding: 20px 56px;
            border: 1px solid #f6f6f6;
            margin-top: 0px;
            border-radius: 5px;
        }

        @media only screen and (max-width: 767px) {
            .main-body {
                display: contents;
            }

            .form-container {
                padding: 15px 14px;
            }

            .sidenav,
            .main {
                width: 100%;
            }

            .main {
                margin-top: 20px;
            }
        }

        .form-heading {
            text-align: center;
            margin: 0px 0px 37px 0px;
            color: #e55f15;
            font-size: 24px;
            font-family: system-ui;
        }

        .header-image {
            text-align: center;
            background-color: #f6f6f6;
        }

        .input-container {
            position: relative;
            margin-bottom: 16px;
        }

        .input-container svg {
            position: absolute;
            top: 50%;
            left: 10px;
            transform: translateY(-50%);
            color: #555;
            /* Adjust the color as needed */
        }

        .input-container input {
            padding-left: 38px;
            font-family: system-ui;
        }

        .no-account {
            text-align: center;
            margin: 32px 0px;
            color: #10572d;
        }
        .new-account {
            color: #10572d;
            text-decoration: none;
        }
        .error_top {
            position: relative;
            bottom: 15px;
            color: red;
        }
        .forget-password {
            font-family: system-ui;
            color: #e55f15;
            font-weight: 600;
            text-decoration: none;
        }
        