html, body { height: 100%; margin: 0; }
body.login-page { background: #fff; }

.login-split { min-height: 100vh; }

/* ===== Panel kiri: marketing bisbas.id ===== */
.login-brand {
    background: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}
.login-brand::before,
.login-brand::after {
    content: "";
    position: absolute;
    border-radius: 50%;
}
.login-brand::before {
    width: 420px; height: 420px;
    top: -140px; right: -120px;
    background: rgba(255,255,255,.07);
}
.login-brand::after {
    width: 280px; height: 280px;
    bottom: -110px; left: -80px;
    background: rgba(255,255,255,.05);
}

.login-brand-content { position: relative; z-index: 1; max-width: 460px; }
.login-brand-logo {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: .5px;
    margin-bottom: 2rem;
}
.login-brand-logo span { opacity: .7; font-weight: 400; }
.login-brand-title {
    font-size: 1.9rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: .75rem;
}
.login-brand-sub {
    font-size: 1rem;
    opacity: .85;
    line-height: 1.6;
    margin-bottom: 1.75rem;
}

.login-brand-features { list-style: none; padding: 0; margin: 0 0 2rem; }
.login-brand-features li {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .95rem;
    margin-bottom: .85rem;
}
.lf-icon {
    flex: 0 0 auto;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,.16);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
}

.login-brand-cta {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: #fff;
    border: 1px solid rgba(255,255,255,.6);
    border-radius: 50rem;
    padding: .55rem 1.4rem;
    font-size: .95rem;
    transition: background-color .15s ease, color .15s ease;
}
.login-brand-cta:hover {
    background: #fff;
    color: #224abe;
    text-decoration: none;
}

/* ===== Panel kanan: form login ===== */
.login-form-col {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1.5rem;
}
.login-form-wrap { width: 100%; max-width: 410px; }
.login-logo { width: 60%; max-width: 220px; }
.login-form-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #3a3b45;
    text-align: center;
    margin-bottom: .25rem;
}
.login-form-sub {
    font-size: .85rem;
    color: #858796;
    text-align: center;
    margin-bottom: 1.5rem;
}
.login-powered { color: #b7b9cc; }
.login-powered strong { color: #858796; }

@media (max-width: 575.98px) {
    .login-form-col { padding: 2rem 1.25rem; }
}
