.elementor-3810 .elementor-element.elementor-element-f6d88db{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-3810 .elementor-element.elementor-element-9c4d1f1{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}:root{--page-title-display:none;}/* ================= RESET & GLOBAL ================= */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: 'Segoe UI', sans-serif;
}

/* ================= WRAPPER (POSISI NAIK, NO SCROLL) ================= */
.colorful-wrapper {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: flex-start; /* penting: biar nggak terlalu turun */

 .colorful-box {
    position: relative;
    width: 100%;
    max-width: 340px;

    margin-left: auto;
    margin-right: auto; /* ini kunci center */

    padding: 28px 24px;
    border-radius: 16px;

    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(16px);

    border: 1px solid rgba(255,255,255,0.4);
    box-shadow: 0 10px 35px rgba(0,0,0,0.25);

    color: #1e293b;
    z-index: 2;

    animation: fadeIn 0.6s ease;

    transform: translateY(-80px);
}
}
}
    padding-left: 20px;
    padding-right: 20px;

    box-sizing: border-box;

    background: linear-gradient(-45deg, #0f172a, #1e293b, #0ea5e9, #9333ea);
    background-size: 400% 400%;
    animation: gradientMove 15s ease infinite;

    overflow: hidden;
}

/* ANIMASI BACKGROUND */
@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* GLOW HALUS */
.colorful-wrapper::before,
.colorful-wrapper::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    filter: blur(100px);
    opacity: 0.25;
}

.colorful-wrapper::before {
    background: radial-gradient(circle, rgba(168,85,247,0.5), transparent 70%);
    top: -100px;
    left: -100px;
}

.colorful-wrapper::after {
    background: radial-gradient(circle, rgba(14,165,233,0.5), transparent 70%);
    bottom: -100px;
    right: -100px;
}

/* ================= CARD ================= */
.colorful-box {
    position: relative;
    width: 100%;
    max-width: 340px;

    padding: 28px 24px;
    border-radius: 16px;

    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(16px);

    border: 1px solid rgba(255,255,255,0.4);
    box-shadow: 0 10px 35px rgba(0,0,0,0.25);

    color: #1e293b;
    z-index: 2;

    animation: fadeIn 0.6s ease;
}

}

@keyframes shimmer {
    0% { left: -80%; }
    100% { left: 120%; }
}

/* ================= TEXT ================= */
.colorful-box h2 {
    margin-bottom: 14px;
    text-align: center;
    font-size: 19px;
}

/* ================= INPUT ================= */
.input-group {
    margin-bottom: 10px;
}

.input-group label {
    font-size: 12px;
    color: #475569;
}

.input-group input {
    width: 100%;
    padding: 9px;
    margin-top: 4px;

    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.15);

    background: rgba(255,255,255,0.9);
    color: #0f172a;

    outline: none;
    transition: 0.2s;
}

.input-group input:focus {
    border-color: #0ea5e9;
    box-shadow: 0 0 0 2px rgba(14,165,233,0.2);
}

/* ================= PASSWORD ================= */
.password-wrapper {
    position: relative;
}

.password-wrapper input {
    padding-right: 38px;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 14px;
    opacity: 0.6;
}

.toggle-password:hover {
    opacity: 1;
}

/* ================= BUTTON ================= */
.login-btn {
    width: 100%;
    padding: 9px;
    margin-top: 6px;

    border-radius: 8px;
    border: none;

    background: linear-gradient(120deg, #0ea5e9, #0284c7);
    color: #ffffff;
    font-weight: 600;

    cursor: pointer;
    transition: 0.25s;
}

.login-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(14,165,233,0.4);
    text-shadow: 0 0 5px rgba(255,255,255,0.8);
}

/* ================= FOOTER ================= */
.colorful-footer {
    margin-top: 8px;
    font-size: 11px;
    text-align: center;
    color: #64748b;
}

/* ================= PARTICLES ================= */
.particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    animation: moveParticles 18s linear infinite;
}

@keyframes moveParticles {
    from { transform: translateY(0); }
    to { transform: translateY(-120vh); }
}

/* ================= ANIMASI MASUK ================= */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= MOBILE ================= */
@media (max-width: 480px) {

    .colorful-wrapper {
        padding: 15px;
        display: flex;
        justify-content: center; /* pastikan center horizontal */
        align-items: center;
    }

    .colorful-box {
        max-width: 100%;
        width: 100%;
        padding: 20px 16px;

        transform: translateY(-40px);
        margin: 0 auto; /* ini kunci biar nggak geser */
    }

}
    }
}

/* ================= FIX WORDPRESS ADMIN BAR ================= */
body.admin-bar .colorful-wrapper {
    top: 32px;
    height: calc(100vh - 32px);
}/* LOGIN BUTTON HOVER (biar makin clean) */
.login-btn:hover {
    background: #15803d;
    color: #ffffff;
}

/* REFRESH BUTTON HOVER (ini yang biasanya keliatan "hitam") */
.refresh-btn:hover {
    background: #374151;
    color: #ffffff;
}

/* OPTIONAL: input focus biar lebih elegan */
.input-group input:focus {
    border-color: #16a34a;
    background: #ffffff;
}