.g-signin2 {
    width: 160px;
}
.g-signin2 > div {
    width: 160px!important;
}
.justify-pagination .pagination {
    justify-content: center!important;
}
[v-cloak] {
    display: none;
}
.blockUI.blockMsg.blockPage, .blockUI.blockOverlay {
    z-index: 2200!important;
}

.fv-plugins-message-container {
    width: 100%;
}

/* ══════════════════════════════════════════════════════════════
   LOGIN PAGE  (resources/views/auth/login.blade.php)
══════════════════════════════════════════════════════════════ */

/* ── Reset total — halaman ini standalone, tidak pakai Metronic ── */
.lp-wrapper *, .lp-wrapper *::before, .lp-wrapper *::after {
    box-sizing: border-box;
}

:root {
    --navy:       #6b1010;
    --navy-dark:  #4e0a0a;
    --navy-light: #8c1515;
    --uisi-red:   #c0392b;
    --white:      #ffffff;
    --gray-50:    #f8f9fa;
    --gray-300:   #dee2e6;
    --gray-400:   #adb5bd;
    --gray-600:   #6c757d;
    --gray-800:   #343a40;
    --muted:      #6c7293;
    --border:     #e2e8f0;
    --radius-lg:  14px;
    --radius-md:  10px;
}

/* ── Layout wrapper ─────────────────────────────────────────── */
.lp-wrapper {
    display: flex;
    min-height: 100vh;
}

/* ═══════════════════════════════════════════════════════════
   LEFT PANEL
═══════════════════════════════════════════════════════════ */
.lp-left {
    flex: 0 0 46%;
    max-width: 46%;
    background-color: var(--navy-dark);
    background-image: url('/bg-ilustration.png');
    background-size: cover;
    background-position: center center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 44px 52px;
    position: relative;
    overflow: hidden;
}

/* Dark overlay agar teks di atas gambar tetap terbaca */
.lp-left::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(60, 6, 6, 0.55) 0%,
        rgba(60, 6, 6, 0.28) 35%,
        rgba(60, 6, 6, 0.50) 70%,
        rgba(40, 4, 4, 0.88) 100%
    );
    pointer-events: none;
}

/* ── Brand header ── */
.lp-left-header {
    position: relative;
    z-index: 1;
}

.lp-brand-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lp-brand-logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.35));
}

.lp-brand-name {
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.lp-brand-name small {
    display: block;
    font-weight: 300;
    font-size: 0.72rem;
    letter-spacing: 0.09em;
    color: rgba(255,255,255,0.55);
    margin-top: 2px;
}

/* ── App name footer ── */
.lp-left-footer {
    position: relative;
    z-index: 1;
}

.lp-app-label {
    font-size: 0.72rem;
    font-weight: 500;
    color: rgba(255,255,255,0.42);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.lp-app-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 12px;
}

.lp-tagline {
    font-size: 0.87rem;
    color: rgba(255,255,255,0.56);
    font-weight: 400;
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   RIGHT PANEL
═══════════════════════════════════════════════════════════ */
.lp-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--white);
    padding: 56px 48px;
}

/* ── Login card ── */
.lp-card {
    width: 100%;
    max-width: 400px;
}

/* Logo top (desktop only) */
.lp-card-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.lp-card-logo img {
    max-height: 76px;
    width: auto;
    object-fit: contain;
}

/* Welcome text */
.lp-welcome {
    text-align: center;
    margin-bottom: 36px;
}

.lp-welcome-sub {
    font-size: 0.9rem;
    color: var(--muted);
    font-weight: 400;
    margin-bottom: 6px;
    display: block;
}

.lp-welcome-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
}

/* SSO Gapura button */
.lp-btn-sso {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 13px 20px;
    border-radius: 12px;
    border: none;
    background: var(--navy);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(107,16,16,0.25);
    text-decoration: none;
    margin-bottom: 0;
}

.lp-btn-sso:hover {
    background: var(--navy-dark);
    box-shadow: 0 6px 20px rgba(107,16,16,0.35);
    transform: translateY(-2px);
    color: #fff;
}

.lp-btn-sso:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(107,16,16,0.2);
}

.lp-sso-icon {
    font-size: 1rem;
}

/* Divider teks "atau" */
.lp-divider-text {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-400);
    font-size: 0.8rem;
    margin: 6px 0;
}

.lp-divider-text::before,
.lp-divider-text::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gray-200);
}

/* Google button */
.lp-btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 100%;
    padding: 15px 24px;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.lp-btn-google:hover {
    border-color: #4285F4;
    box-shadow: 0 6px 20px rgba(66,133,244,0.18);
    transform: translateY(-2px);
    color: var(--gray-800);
}

.lp-btn-google:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.lp-google-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Caption bawah tombol */
.lp-caption {
    text-align: center;
    margin-top: 16px;
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.6;
}

/* Divider */
.lp-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 30px 0;
}

/* SSO badge */
.lp-sso-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(107,16,16,0.06);
    border-radius: var(--radius-md);
}

.lp-sso-badge i {
    color: var(--navy);
    font-size: 1rem;
}

.lp-sso-badge span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--navy);
}

/* Tagline sub */
.lp-tagline-sub {
    text-align: center;
    margin-top: 20px;
    font-size: 0.78rem;
    color: var(--gray-400);
    letter-spacing: 0.03em;
    line-height: 1.5;
}

/* Copyright */
.lp-copyright {
    text-align: center;
    margin-top: 36px;
    font-size: 0.74rem;
    color: var(--gray-400);
    line-height: 1.6;
}

/* Desktop-only: logo di kanan atas */
.lp-only-desktop { display: flex; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Mobile ≤ 768px
═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .lp-wrapper {
        flex-direction: column;
    }

    /* Slim top bar */
    .lp-left {
        flex: 0 0 auto;
        max-width: 100%;
        min-height: 260px;
        padding: 20px 20px;
        flex-direction: row;
        align-items: flex-start;
        background-position: center 30%;
    }

    .lp-left-footer { display: none; }

    /* Gradient fade ke putih di bagian bawah panel */
    .lp-left::before {
        background: linear-gradient(
            to bottom,
            rgba(60, 6, 6, 0.65) 0%,
            rgba(60, 6, 6, 0.20) 40%,
            rgba(255, 255, 255, 0.08) 55%,
            rgba(255, 255, 255, 0.35) 68%,
            rgba(255, 255, 255, 0.65) 80%,
            rgba(255, 255, 255, 0.88) 92%,
            #ffffff 100%
        );
    }

    .lp-brand-logo {
        width: 52px;
        height: 52px;
    }

    .lp-brand-name {
        font-size: 0.75rem;
    }

    /* Login area */
    .lp-right {
        flex: 1;
        padding: 20px 24px 20px;
        justify-content: center;
        align-items: stretch;
    }

    .lp-card {
        max-width: 100%;
    }

    .lp-only-desktop {
        display: none;
    }

    /* Kecilkan spacing antar elemen di mobile */
    .lp-welcome {
        margin-bottom: 16px;
    }

    .lp-welcome-title {
        font-size: 1.7rem;
    }

    .lp-caption {
        margin-top: 12px;
    }

    .lp-divider {
        margin: 20px 0;
    }

    .lp-copyright {
        margin-top: 20px;
    }
}

@media (max-width: 400px) {
    .lp-right { padding: 32px 16px 24px; }
}

