﻿html.login-page,
html.login-page body {
    height: 100%;
    margin: 0;
    overflow: hidden;
    background: #f4f6f9;
}

    html.login-page body {
        margin-bottom: 0 !important;
    }

    html.login-page #app,
    html.login-page .login-page-wrapper {
        width: 100%;
        height: 100vh;
        overflow: hidden;
    }

    html.login-page .login-page-wrapper {
        display: flex;
        justify-content: center;
    }

    html.login-page #loginPanel {
        width: 100%;
        height: 100vh;
        overflow-y: auto;
        overflow-x: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 30px 15px;
        background: #f4f6f9;
        transition: width 0.2s ease;
    }

    html.login-page.online-mode .login-page-wrapper {
        justify-content: flex-start;
    }

    html.login-page.online-mode #loginPanel {
        width: 60%;
    }

    html.login-page #marketingPanel {
        display: none;
        width: 40%;
        height: 100vh;
        background: #f4f6f9;
        border-left: 1px solid #e5e7eb;
        overflow: hidden;
    }

    html.login-page.online-mode #marketingPanel {
        display: block;
    }

    html.login-page #marketingPanel iframe {
        width: 100%;
        height: 100vh;
        border: 0;
        display: block;
        overflow: hidden;
        background: #f4f6f9;
    }

    html.login-page .login-content {
        width: 100%;
        max-width: 500px;
    }

    html.login-page.online-mode .login-content {
        max-width: 420px;
    }

    html.login-page .login-brand img {
        max-width: 200px;
        height: auto;
    }

    html.login-page .card.card-primary {
        border-top: 3px solid #6777ef;
        border-radius: 10px;
        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    }

    html.login-page .btn-primary {
        background-color: #6777ef;
        border-color: #6777ef;
    }

        html.login-page .btn-primary:hover,
        html.login-page .btn-primary:focus,
        html.login-page .btn-primary:active {
            background-color: #5567e8 !important;
            border-color: #5567e8 !important;
        }

    html.login-page .simple-footer {
        color: #6c757d;
    }

        html.login-page .simple-footer p {
            margin-bottom: 0;
        }

@media (max-width: 991.98px) {
    html.login-page.online-mode .login-page-wrapper {
        justify-content: center;
    }

    html.login-page.online-mode #loginPanel {
        width: 100%;
    }

    html.login-page.online-mode #marketingPanel {
        display: none;
    }

    html.login-page .login-content {
        max-width: 500px;
    }
}

@media (max-height: 650px) {
    html.login-page #loginPanel {
        align-items: flex-start;
    }

    html.login-page .login-content {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}
