.m_login_panel {
    justify-content: center;
    align-items: center;
    display: flex;
    background: transparent !important;
}

.m-login.m-login--1 .m-login__wrapper .m-login__logo {
    text-align: center;
    margin: 0 auto 2vw auto;
}

.m_login {
    position: absolute;
    background-color: white;
    margin: auto;
    padding: 1.5vw !important;
    border-radius: 10px;
    opacity: .95;
    /* background: transparent; */
}

.m-login.m-login--1.m-login--signin .m-login__signin {
    background: white;
    /* padding: 2rem; */
    border-radius: 10px;
}

.m-login__form {
    margin-top: 5px !important;
}

.m-login.m-login--1 .m-login__wrapper .m-login__head {
    margin-top: 0;
    margin-bottom: 4.7rem;
}

    .m-login.m-login--1 .m-login__wrapper .m-login__head .m-login__title {
        text-align: left;
        font-size: 1.3vw;
        font-weight: 500;
        color: black;
        text-align: center;
        display: none;
    }

.m-login.m-login--1 .m-login__wrapper .m-login__form .m-login__form-action {
    margin: 1rem 0 1rem 0;
    text-align: center;
}

    .m-login.m-login--1
    .m-login__wrapper
    .m-login__form
    .m-login__form-action
    .btn {
        display: inline-block;
        text-align: center;
        padding: 1rem 2rem;
        width: 100%;
        border-radius: 6px;
    }

.m-login.m-login--1 .m-login__aside {
    width: 31vw;
}

.m-login.m-login--1
.m-login__wrapper
.m-login__form
.m-form__group
.form-control,
.m-login.m-login--1
.m-login__wrapper
.m-login__forget-password
.m-form__group
.form-control {
    border-radius: 0;
    border: 0;
    padding: 0;
    margin: 0;
    height: 100%;
    border-left: 0.12vw solid #b8b8b8;
    padding: 0 0.5vw;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    font-family: 'NotoSans-Regular' !important;
    font-size: 1vw;
}

.m-login.m-login--1 .m-login__wrapper .m-login__form .m-form__group,
.m-login.m-login--1 .m-login__wrapper .m-login__forget-password .m-form__group {
    margin-top: 1rem;
    border: 0.12vw solid #b8b8b8;
    border-radius: 8px;
    height: 3vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .m-login.m-login--1 .m-login__wrapper .m-login__form .m-form__group img,
    .m-login.m-login--1
    .m-login__wrapper
    .m-login__forget-password
    .m-form__group
    img {
        width: 3vw;
        height: 2.5vw;
        padding: 0.3vw;
    }

.col.m-login-option,
.col.m-login-option > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
}

label {
    margin: 0;
    /* padding-left: 5px; */
    color: #424141;
    cursor: pointer;
}

#m_login_keep_signed_in {
    border: 2px solid #b8b8b8;
}

.m-login.m-login--1 .m-login__wrapper .m-login__form .m-login__form-sub {
    margin-top: 1rem;
    margin-bottom: 2rem;
}

    .m-login.m-login--1
    .m-login__wrapper
    .m-login__form
    .m-login__form-sub
    .m-link {
        font-size: 1vw;
    }

.m-login-overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #bae6a917;
}

.m-login.m-login--1 .m-login__wrapper {
    padding: 0;
}

.m-login.m-login--1 .m-login__account {
    margin-top: 2vw;
}

/* Checkbox */
@keyframes check {
    0% {
        height: 0;
        width: 0;
    }

    25% {
        height: 0;
        width: 8px;
    }

    50% {
        height: 15px;
        width: 8px;
    }
}

.checkbox {
    background-color: #fff;
    display: inline-block;
    height: 22px;
    margin: 0 0.25em;
    width: 22px;
    border-radius: 4px;
    border: 2px solid #5c5c5c;
    float: right;
}

    .checkbox span {
        display: block;
        height: 22px;
        position: relative;
        width: 22px;
        padding: 0;
    }

        .checkbox span:after {
            -moz-transform: scaleX(-1) rotate(135deg);
            -ms-transform: scaleX(-1) rotate(135deg);
            -webkit-transform: scaleX(-1) rotate(135deg);
            transform: scaleX(-1) rotate(135deg);
            -moz-transform-origin: left top;
            -ms-transform-origin: left top;
            -webkit-transform-origin: left top;
            transform-origin: left top;
            border-right: 3px solid #fff;
            border-top: 3px solid #fff;
            content: "";
            display: block;
            height: 15px;
            left: 1px;
            position: absolute;
            top: 10px;
            width: 8px;
        }

        .checkbox span:hover:after {
            border-color: #999;
        }

    .checkbox input {
        display: none;
    }

        .checkbox input:checked + span:after {
            -webkit-animation: check 0.8s;
            -moz-animation: check 0.8s;
            -o-animation: check 0.8s;
            animation: check 0.8s;
            border-color: #555;
        }

        .checkbox input:checked + .default:after {
            border-color: #444;
        }

        .checkbox input:checked + .primary:after {
            border-color: #2196f3;
        }

        .checkbox input:checked + .success:after {
            border-color: #8bc34a;
        }

        .checkbox input:checked + .info:after {
            border-color: #5c94ff;
        }

        .checkbox input:checked + .warning:after {
            border-color: #ffc107;
        }

        .checkbox input:checked + .danger:after {
            border-color: #f44336;
        }
/* Checkbox*/

.custom-btn {
    position: relative;
    display: inline-block;
    padding: 0.8vw 1vw;
    margin: 10px;
    color: #fff;
    font-size: 1vw !important;
    font-family: inherit;
    letter-spacing: 2px;
    border-radius: 5px;
    outline: none;
    border: none;
    cursor: pointer;
    box-sizing: border-box;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19) !important;
    width: 17vw !important;
}
/*
.btn--ripple {
    background: linear-gradient(90deg, #0162c8, #55e7fc);
    overflow: hidden;
}

    .btn--ripple span {
        position: absolute;
        background: #fff;
        transform: translate(-50%, -50%);
        pointer-events: none;
        border-radius: 50%;
        animation: rippleAnimation 1s linear infinite;
    }

@keyframes rippleAnimation {
    0% {
        width: 0px;
        height: 0px;
        opacity: 0.5;
    }

    100% {
        width: 500px;
        height: 500px;
        opacity: 0;
    }
}*/

/*.btn--liquidBtn {
    overflow: hidden;
    width: 230px;
}

    .btn--liquidBtn span {
        position: relative;
        z-index: 1;
    }

    .btn--liquidBtn:hover div {
        top: -190px;
    }

    .btn--liquidBtn div {
        position: absolute;
        top: -130px;
        left: 0;
        width: 300px;
        height: 250px;
        background: #4973ff;
        box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
        transition: 0.5s;
    }

        .btn--liquidBtn div::before, .btn--liquidBtn div::after {
            content: "";
            position: absolute;
            top: 0;
            left: 50%;
            width: 200%;
            height: 200%;
            transform: translate(-50%, -75%);
        }

        .btn--liquidBtn div::before {
            border-radius: 45%;
            background: #141414;
            animation: liquidAnimation 10s linear infinite;
        }

        .btn--liquidBtn div::after {
            border-radius: 40%;
            background: rgba( 71, 102, 110, 0.5);
            animation: liquidAnimation 10s linear infinite;
        }

@keyframes liquidAnimation {
    0% {
        transform: translate(-50%, -75%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -75%) rotate(360deg);
    }
}*/


.btn--hoverEffect2 {
    display: inline-block;
    z-index: 1;
    color: #ff3c83;
    width: 230px;
}

    .btn--hoverEffect2:hover {
        color: #fff;
    }

    .btn--hoverEffect2::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        right: 50%;
        bottom: 0;
        opacity: 0;
        transition: 0.5s all ease;
        box-sizing: border-box;
    }

    .btn--hoverEffect2:hover::before {
        border-radius: 4px;
        transition: 0.5s all ease;
        left: 0;
        right: 0;
        background: linear-gradient(90deg, #fd297a, #9424f0);
        opacity: 1;
        z-index: -1;
    }

.btn--ripple {
    background: linear-gradient(67deg, #0162c8, #15a0b4);
    overflow: hidden;
}

    .btn--ripple span {
        position: absolute;
        background: #fff;
        transform: translate(-50%, -50%);
        pointer-events: none;
        border-radius: 50%;
        animation: rippleAnimation 1s linear infinite;
    }

@keyframes rippleAnimation {
    0% {
        width: 0px;
        height: 0px;
        opacity: 0.5;
    }

    100% {
        width: 500px;
        height: 500px;
        opacity: 0;
    }
}


@keyframes fade {
    from {
        opacity: 1.0;
    }

    50% {
        opacity: 0.5;
    }

    to {
        opacity: 1.0;
    }
}

@-webkit-keyframes fade {
    from {
        opacity: 1.0;
    }

    50% {
        opacity: 0.7;
    }

    to {
        opacity: 1.0;
    }
}

.blink {
    animation: fade 2000ms infinite;
    -webkit-animation: fade 2000ms infinite;
}

.m-login.m-login--1 .m-login__account img {
    height: 2vw !important;
    width: auto !important;
    display: none;
}

.m-login.m-login--1 .m-login__wrapper .m-login__logo img {
    width: 15vw;
}

.progressDiv {
    display: none;
}

.progressImg {
    height: 40px;
    width: 120px;
}

#patentInfo {
    margin-top: 5px;
    font-size: .85rem;
    font-style: italic;
    color: #0b85bced;
    font-family: Montserrat;
}

#poweredby-logo-container {
    color: #0b85bced;
    font-size: 1rem;
    font-family: Montserrat;
}

#poweredby-logo-container:before {
    content: "Patent No. 11,714,826 and 12,210,547";
}
