.loginwrap {
    display: flex;
    width: 100vw;
    height: 100vh;
    background-color: #fff;

    @media screen and (max-width: 865px) {
        flex-direction: column;

        [class*=col-] {
            padding: 20px 0px 30px;
        }
    }

    .col-left {
        background-color: $login-bg;
        background: $login-bg url('../assets/images/mergePoly.svg') no-repeat;
        background-position: 60px 50px;
        background-size: 60%;

        .slider-container {
            display: block;
            width: 90%;
        }
    }

    &>[class*=col-] {
        display: flex;
        flex-basis: 50%;
        align-items: center;
        justify-content: center;
    }

    .form-container {
        text-align: center;
        min-width: 370px;

        .forgetPass {
            margin-top: 0;
            position: relative;
            top: -15px;
            margin-bottom: -15px;

            a {
                font-size: 13px;
                color: $text-primary;
                font-weight: 600;
            }
        }

        form {
            &+p {
                margin-top: 50px;
                font-size: 13px;

                a {
                    font-weight: 600;
                    margin-left: 5px;
                }
            }
        }

        h1 {
            img {
                width: 200px;
                margin: auto;
                text-align: center;
            }
        }

        h2 {
            font-size: $f26;
            margin-bottom: 0px;

            &+p {
                font-size: $f14;
                ;
                margin-bottom: 40px;
            }
        }

        .form-field {
            position: relative;
            font-family: $mulish-regular;
            font-size: $f14;

            &:last-child {
                margin-top: 20px;
            }

            &[class*=icon-] {
                &:after {
                    position: absolute;
                    right: 5px;
                    top: 14px;
                    color: $input-icon;
                }
            }

            &.icon-user:after {
                content: "\f007";
                font-family: $font-awesome;
                font-weight: 900;
            }

            &.icon-mail:after {
                content: "\f0e0";
                font-family: $font-awesome;
                font-weight: 900;
            }

            &.icon-eye:after {
                content: "\f070";
                font-family: $font-awesome;
                font-weight: 900;
            }
        }

        .btn-primary {
            width: 100%;
        }
    }
}