.login-order-banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 100vh;
    padding: 40px;
    box-sizing: border-box;
    isolation: isolate;
}

.login-order-banner .login-bg {
    display: block;
    position: absolute;
    inset: 0;
    height: 100%;
    min-height: 0;
    z-index: -1;
}

.login-order-panel {
    width: 100%;
    max-width: 620px;
    padding: 28px 32px;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: 12px;
    background: rgba(255, 255, 255, .94);
    color: #001a3a;
    box-shadow: 0 12px 40px rgba(0, 26, 58, .18);
}

.login-order-panel h2 {
    margin: 0 0 8px;
    font-size: 28px;
    line-height: 1.25;
    color: inherit;
}

.login-order-panel p {
    margin: 0 0 18px;
    color: inherit;
}

.login-order-list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 65vh;
    overflow-y: auto;
    scrollbar-gutter: stable;
}

.login-order-list li + li {
    border-top: 1px solid #dce4ec;
}

.login-order-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 11px 8px;
    color: #003fa8;
    font-size: 16px;
    line-height: 1.45;
    text-decoration: underline;
    text-underline-offset: 3px;
    overflow-wrap: anywhere;
}

.login-order-list a:hover,
.login-order-list a:focus-visible {
    background: #e8f0ff;
    color: #001a3a;
}

.login-order-list a:focus-visible {
    outline: 2px solid #003fa8;
    outline-offset: -2px;
}

.login-order-download {
    flex-shrink: 0;
    font-size: 23px;
    line-height: 1;
}

@media (max-width: 900px) {
    .login-order-banner { padding: 24px; }
    .login-order-panel { padding: 24px; }
}

@media (max-width: 570px) {
    .login-container { flex-direction: column; }
    .login-left {
        max-width: 100%;
        height: auto;
        min-height: 100vh;
    }

    .login-right.login-order-banner {
        display: flex;
        min-height: auto;
        padding: 24px 16px;
    }

    .login-order-panel { padding: 22px 16px; }
    .login-order-panel h2 { font-size: 24px; }
    .login-order-list { max-height: none; }
}
