    body.auth-bg {
        /* Gradient hangat perpaduan warna logo Mama */
        background: linear-gradient(135deg, #eafef3 0%, #d9fae8 100%);
        min-height: 100vh;
        position: relative;
        overflow-x: hidden;
    }

    /* Pattern sayuran transparan agar tidak polos */
    body.auth-bg::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0.05;
        /* Sangat tipis supaya tidak ganggu teks */
        z-index: -1;
        background-image: url('https://www.transparenttextures.com/patterns/food.png');
        background-repeat: repeat;
    }

    /* Hiasan lingkaran abstrak untuk mempermanis sudut */
    .bg-circle {
        position: fixed;
        border-radius: 50%;
        background: #133020;
        opacity: 0.1;
        z-index: -1;
    }

    .circle-1 {
        width: 300px;
        height: 300px;
        top: -100px;
        right: -100px;
    }

    .circle-2 {
        width: 200px;
        height: 200px;
        bottom: -50px;
        left: -80px;
    }

    /* Membuat card login terlihat mengambang lembut */
    #auth-container {
        backdrop-filter: blur(5px);
        background: rgba(255, 255, 255, 0.8);
        border-radius: 25px;
        box-shadow: 0 15px 35px rgba(222, 151, 129, 0.1) !important;
        border: 1px solid rgba(255, 255, 255, 0.5);
    }


    .img-auth {
        width: 100%;
        height: 100px;
        object-fit: contain;
    }