h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

body.login-page {
    position: relative; /* Pastikan elemen utama bisa menampung pseudo-element */
}

body.login-page::before {
    content: "";
    position: fixed; /* Agar menutupi seluruh layar */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;

    /*background-image: url("/uangku/assets/img/bg_login.jpeg");*/
    background-image: url("/assets/img/bg_login.jpeg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

    opacity: 0.4; /* Hanya background yang transparan */
    
    z-index: -1; /* Pastikan tetap di belakang konten */
}

.login-container * {
    font-family: "Lexend", sans-serif;
}

/* LOGIN PAGE */
.login-container {
    display: flex;
    flex-direction: column; /* Mengatur elemen agar tersusun ke bawah */
    background-color: white;
    padding: 80px 80px;
    border-radius: 8px;
    box-shadow: 0 14px 56px rgba(75, 75, 75, 0.1);
    width: 320px;
    /* font-family: "Lexend", sans-serif; */
    gap: 16px;
}

.title-left{
    color: #1e1e1f;
    font-size: 28px;
}

.title-right{
    color: #1B32D5;
    font-size: 28px;
}

.desc-title{
    color: #757575;
    /* font-family: "Lexend", sans-serif; */
    font-size: 14px;
    /* font-style: normal; */
    font-weight: 300;
    /* line-height: normal; */
}

.title-login{
    display: flex;
    justify-content: center;
    flex-direction: column; /* Mengatur elemen agar tersusun ke bawah */
    align-items: center; /* (Opsional) Untuk membuat teks berada di tengah */
    gap: 22px;
    padding: 24px 0px;
}

input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #1B32D5;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/*  */

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

th,
td {
    border: 1px solid black;
    padding: 8px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
}



body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f0f2f5;
    margin: 0;
    text-align: center;

    /* DARI GPT */
    /* display: flex; */
    flex-direction: column;
    /* align-items: center; Agar konten tetap di tengah */
    gap: 20px;
    /* Memberikan jarak antar elemen */
}

.welcome-container {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 400px;
}

.logout-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #f44336;
    color: white;
    text-decoration: none;
    border-radius: 4px;
}