
html, body {
    margin: 0;
    height: 100%;
    overflow: hidden;
}
.content-wrapper {
    overflow: hidden !important;
    /*background-image: url(https://img.freepik.com/free-photo/view-frame-with-copy-space_23-2148290929.jpg?t=st=1773645441~exp=1773649041~hmac=db4f9f53fd7fed8b20b54c36f60f4275c7c6c75e7d33edf3789967b04ebba65c&w=1480);*/
    background-image: url(../images/auth-bg/bg2.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}


.leftWDiv {
    background: #6c783805;
    padding: 35px;
    color: #fff;
    border-radius: 25px;
    backdrop-filter: blur(2px);
    position: relative;
    width: 380px;
    padding: 40px;
    border-radius: 30px;
    background: linear-gradient(180deg, #128264, #070909);
    z-index: 1;
    text-align: center;
    box-shadow: 0px 16px 20px #000000d4, 1px 0px 3px #0000002b;
}

    .leftWDiv::before {
        width: 100%;
        height: 1px;
        position: absolute;
        content: "";
        background: linear-gradient(90deg, rgba(66, 189, 172, 0) 0, #1abf57 50%, rgba(66, 189, 172, 0) 100%);
        bottom: 0;
        left: 0;
    }
.logo {
    height: 57px;
    margin-bottom: 7px;
}
.mainheading {
    text-align: center;
    font-size: 35px;
    font-weight: 600;
    margin: 0;
    position: relative;
    padding-top: 10px;
    font-family: 'Poppins', sans-serif;
}
    .mainheading::before {
        width: 100%;
        height: 1px;
        position: absolute;
        content: "";
        background: linear-gradient(90deg, rgba(66, 189, 172, 0) 0, #1fc35c 50%, rgba(66, 189, 172, 0) 100%);
        top: 0;
        left: 0;
    }
.mainpara {
    font-size: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}
a {
    color: #2bff79;
}
a:hover {
    color: #2bff79;
}

.pd0 {
    padding: 0px !important;
}
.icons {
    position: absolute;
    left: 13px;
    top: 11px;
    font-size: 18px !important;
    color: #06dc6e;
}
.form-control {
    background-color: transparent !important;
    border: solid 1px #ffffff30;
    color: #fff;
    opacity: 1 !important;
    border-radius: 80px;
    padding-left: 35px;
    font-weight: 400;
}
    .form-control:focus {
        color: #eee;
        background-color: #fff;
        border-color: #12cb609c;
        outline: 0;
        box-shadow: 0 0 20px .2rem rgb(13 210 102 / 19%);
    }
    input::placeholder, .form-control::placeholder {
        color: #ffffffa8;
    }

    .submit {
        position: relative;
        width: 100%;
        border: none;
        border-radius: 30px;
        font-size: 16px;
        font-weight: 600;
        color: #fff;
        cursor: pointer;
        background: linear-gradient(90deg,#16c45b,#00e676,#16c45b);
        transition: all .3s ease;
    }
    .submit:hover {
        /*transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0,255,120,0.45), 0 0 25px rgba(0,255,120,0.35);*/
    }
    .submit::before {
        content: "";
        position: absolute;
        inset: -1px;
        border-radius: 32px;
        background: linear-gradient(163deg, #ffffff, #00e67600, #ffffff);
        z-index: -1
    }
        .submit::after {
            content: "";
            position: absolute;
            inset: -1px;
            background: linear-gradient(90deg, #00ff8838, #00e67666, #00ff8861);
            border-radius: 35px;
            filter: blur(12px);
            opacity: 0.6;
            z-index: -2;
        }

.open_eye {
    position: absolute;
    right: 23px;
    top: 7px;
    color: #06dc6e;
}
.slash {
    position: absolute;
    right: 23px;
    top: 7px;
    display: none;
    color: #06dc6e;
}
@media only screen and (max-width: 767px) {
    .leftWDiv{
        margin:10px;
    }
    .rightBDiv{
        display:none;
    }
    .logo {
        height: 73px;
    }
    .open_eye {
        position: absolute;
        right: 23px;
        top: 7px;
    }

    .slash {
        position: absolute;
        right: 23px;
        top: 7px;
        display: none;
    }
}