body.liot-body.login-view {
    min-height: 100vh;
    margin: 0;
    background: #ffffff;
    display: flex;
}

body.login-view .login-wrapper {
    display: flex;
    width: 100%;
    min-height: 100vh;
}

body.login-view .login-panel-left {
    flex: 0 0 35%;
    background: #486c86;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    color: #fbfbfb;
    text-align: center;
}

body.login-view .login-panel-left img {
    max-width: 50%;
    height: auto;
}

body.login-view .login-panel-left small {
    display: block;
    margin-top: 1rem;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    text-transform: uppercase;
}

body.login-view .login-panel-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 3rem 2rem;
    background: linear-gradient(90deg, #ffffff 30%, #f5f8fb 100%);
}

body.login-view .login-card {
    width: 100%;
    max-width: 360px;
}

body.login-view .login-heading {
    font-size: 1.1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #6a778c;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

body.login-view .login-card .form-control {
    height: 52px;
    border-radius: 8px;
    border: 1px solid #cfd8e3;
    color: #4c5565;
}

body.login-view .login-card .form-control:focus {
    border-color: #4e89b2;
    box-shadow: none;
}

body.login-view .login-card .btn-login {
    height: 52px;
    border-radius: 8px;
    background: #d7dadd;
    border: 1px solid #c3c6c9;
    color: #76808c;
    font-weight: 600;
}

body.login-view .login-card .btn-login:hover {
    background: #cfd3d7;
    color: #707884;
}

body.login-view .login-link {
    display: block;
    text-align: center;
    margin-top: 1rem;
    color: #4e89b2;
    font-size: 0.9rem;
    text-decoration: none;
}

@media (max-width: 992px) {
    body.login-view .login-panel-left {
        display: none;
    }

    body.login-view .login-panel-right {
        background: #ffffff;
    }
}

body.login-view .liot-nav {
    display: none;
}
