body {
    background-image: url('https://lako.bpomkendari.com/assets/img/background-2.jpg'); /* Pastikan path benar */
    background-size: cover;         /* Gambar menutupi seluruh layar */
    background-position: center;    /* Gambar berada di tengah */
    background-repeat: no-repeat;   /* Gambar tidak diulang */
    background-attachment: fixed;   /* Background tetap saat scroll */
    height: 100vh;                  /* Pastikan tinggi halaman menutupi layar penuh */
    margin: 0;                      /* Hapus margin default */
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Overlay hitam transparan */
    z-index: -1; /* Agar tidak menutupi konten */
}


.login-form {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding: 50px;
    background-color: white;
    border-radius: 10px 10px 10px 10px;
    width: 500px;
}