
        
        * {
            padding: 0;
            margin: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            overflow: hidden;
        }

        .wave {
            position: fixed;
            bottom: 0;
            left: 0;
            height: 100%;
            z-index: -1;
        }

        .bg {
            position: fixed;
            display: block;
            margin-top: 10px;
            margin-left: auto;
            margin-right: auto;
            height: auto;

            z-index: -1;
            left: 50%;
            transform: translate(-50%, 0);
        }

        .container {
            width: 100vw;
            height: 100vh;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-gap: 7rem;
            /* padding: 0 2rem; */
        }

        .img {
            padding-top: 100px !important;
            display: flex;
            justify-content: flex-end;
            align-items: center;
        }

        .login-content {
            display: flex;
            justify-content: flex-start;
            margin-top: 100px;
            align-items: center;
            text-align: center;
        }

        .img img {
            height: 200px;
            width: auto;
        }


        form {
            width: 360px;
        }

        .login-content img {
            height: 100px;
        }

        .login-content h2 {
            margin: 10px 0;
            color: #333;
            text-transform: uppercase;
            font-size: 35px;
        }

        .login-content .input-div {
            position: relative;
            display: grid;
            grid-template-columns: 7% 93%;
            margin: 25px 0;
            padding: 5px 0;
            border-bottom: 2px solid #d9d9d9;
        }

        .login-content .input-div.one {
            margin-top: 0;
        }

        .i {
            color: #d9d9d9;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .i i {
            transition: .3s;
        }

        .input-div>div {
            position: relative;
            height: 45px;
            /* margin: 10px 0px 0px 0px; */
        }

        .input-div>div>h5 {
            position: absolute;
            left: 10px;
            top: 50%;
            transform: translateY(-50%);
            color: #999;
            font-size: 16px;
            transition: .3s;
        }

        .input-div:before,
        .input-div:after {
            content: '';
            position: absolute;
            bottom: -2px;
            width: 0%;
            height: 2px;
            background-color: #38d39f;
            transition: .4s;
        }

        .input-div:before {
            right: 50%;
        }

        .input-div:after {
            left: 50%;
        }

        .input-div.focus:before,
        .input-div.focus:after {
            width: 50%;
        }

        .input-div.focus>div>h5 {
            top: -5px;
            font-size: 15px;
        }

        .input-div.focus>.i>i {
            color: #38d39f;
        }

        .input-div>div>input {
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            border: none;
            outline: none;
            background: none;
            padding: 0.5rem 0.7rem;
            font-size: 1rem;
            color: #555;
            font-family: 'poppins', sans-serif;
            margin-top: 5px;
        }

        .input-div.pass {
            margin-bottom: 4px;
        }

        a {
            display: block;
            text-align: right;
            text-decoration: none;
            color: #999;
            font-size: 0.9rem;
            transition: .3s;
        }

        a:hover {
            color: #38d39f;
        }

        .btn {
            display: block;
            width: 100%;
            height: 40px;
            border-radius: 25px;
            outline: none;
            border: none;
            background-image: linear-gradient(to right, #6e5db8, #38d39f, #32be8f);
            background-size: 200%;
            font-size: 1.1rem;
            color: #fff;
            font-family: 'Poppins', sans-serif;
            text-transform: uppercase;
            margin: 1.5rem 0;
            cursor: pointer;
            transition: .5s;
        }

        .btn:hover {
            background-position: right;
        }


        @media screen and (max-width: 1050px) {
            .container {
                grid-gap: 0;
                /* padding: 0 2rem; */
            }
        }

        @media screen and (max-width: 1000px) {
            form {
                width: 290px;
            }

            .login-content h2 {
                font-size: 2.4rem;
                margin: 0px 0;
            }

            .img {
                /* display: none; */
                display: flex;
                justify-content: flex-start;
                align-items: center;
                text-align: center;
                justify-content: center;
                padding: 20px 10px 10px 10px !important;
                margin-bottom: 0;
            }

            .img img {
                height: 160px;
                width: auto;
            }

            .login-content h2 {
                margin: 10px 0;
                color: #333;
                text-transform: uppercase;
                font-size: 30px;
                margin-top: 10px;
            }
        }

        @media screen and (max-width: 900px) {
            .container {
                grid-template-columns: 1fr;
                /* padding: 0 2rem; */
            }

            .img {
                /* display: none; */
                padding: 20px 10px 10px 10px !important;
                display: flex;
                justify-content: flex-start;
                align-items: center;
                text-align: center;
                justify-content: center;
                margin-bottom: 0;
            }

            .bg {
                display: none;
            }

            /* .wave {
                display: none;
            } */

            .login-content {
                margin-top: 0px;
                justify-content: center;
            }
        }

        input:-internal-autofill-selected {
            appearance: menulist-button;
            background-image: none !important;
            background-color: -internal-light-dark(rgb(250, 251, 253), rgba(70, 90, 126, 0.4)) !important;
            color: -internal-light-dark(black, white) !important;
            border-radius: 5px;
        }

       

        .owl .hand {
            width: 34px;
            height: 34px;
            border-radius: 40px;
            background-color: #472d20;
            transform: scaleY(0.6);
            position: absolute;
            left: 14px;
            bottom: -8px;
            transition: 0.3s ease-out;
        }

        .owl .hand.password {
            transform: translateX(42px) translateY(-15px) scale(0.7);
        }

        .owl .hand.hand-r {
            left: 170px;
        }

        .owl .hand.hand-r.password {
            transform: translateX(-42px) translateY(-15px) scale(0.7);
        }

        .owl .arms {
            position: absolute;
            top: 58px;
            height: 41px;
            width: 100%;
            overflow: hidden;
        }

        

        .owl .arms .arm.password {
            transform: translateX(40px) translateY(-40px);
        }

        .owl .arms .arm.arm-r {
            left: 158px;
            transform: scaleX(-1);
        }

        .owl .arms .arm.arm-r.password {
            transform: translateX(-40px) translateY(-40px) scaleX(-1);
        }

        .alert {
            margin: 10px 0;
            padding: 8px;
            background-color: #cf453b;
            color: white;
        }
        .alert-success {
            margin: 10px 0;
            padding: 8px;
            background-color: #61c977;
            color: white;
        }

        .closebtn {
            margin-left: 15px;
            color: white;
            font-weight: bold;
            float: right;
            font-size: 20px;
            line-height: 18px;
            cursor: pointer;
            transition: 0.3s;
        }

        .alert-text {
            font-size: 14px;
        }

        .closebtn:hover {
            color: black;
        }

    