* {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
}
.auth-wrapper {
    display: flex;
    height: 100vh;
    background: #fff;
    justify-content: center;
}

.illustration {
    width: 100%;
    height: 200px; /* sesuaikan */
    overflow: hidden;
}

.illustration img {
    width: 90%;
    height: 80%;
    object-fit: cover;
}

/* LEFT */
.auth-left {
    flex: 1;
    background: #f8fbff;
    display: flex;
    border-right: 1px solid #9bbcff; /* halus */
    flex-direction: column;
    padding: 40px;
}

.auth-left .brand {
    margin-bottom: 40px;
}

.auth-left .illustration {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-left img {
    max-width: 100%;
}

/* RIGHT */
.auth-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-card {
    width: 100%;
    max-width: 520px; /* sebelumnya 420px */
    padding: 40px;
}

.auth-card .title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 0;
}

.small-placeholder::placeholder {
    font-size: 0.95rem;
    opacity: 0.6;
}

/* FORM */
.form-control {
    padding: 12px 14px;
    border-radius: 10px;
}

.btn-login {
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
}
.password-toggle {
    position: absolute;
    top: 50px; /* sejajar input besar */
    right: 18px;
    cursor: pointer;
    color: #6c757d;
    font-size: 1.5rem;
}

.password-toggle:hover {
    color: #0d6efd;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .auth-left {
        display: none;
    }

    .auth-right {
        flex: 1;
    }
}

/* =================================================
   TABLET & MOBILE (CENTER ALL)
================================================= */
@media (max-width: 992px) {
    .auth-wrapper {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 40px;
    }

    .auth-left .illustration {
        display: none;
    }

    .auth-left {
        flex: none;
        background: transparent;
        border: none;
        padding: 0;

        display: flex;
        justify-content: center;
        align-items: center;
    }

    .auth-left .brand {
        margin-top: 0;
        margin-bottom: 12px;
        text-align: center;
    }

    .auth-left .brand img {
        height: 130px;
    }

    .auth-right {
        width: 100%;
        justify-content: center;
    }

    .auth-card {
        max-width: 420px;
        padding: 0 20px;
        text-align: center;
    }

    .auth-card .title {
        margin-top: 0;
        margin-bottom: 6px;
    }

    .auth-card form {
        text-align: left;
    }
}
