* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body{
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
}

.kiri{
    flex: 1.5;
    display: flex;
    justify-content: center;
    align-items: center;
    background:
        url('../../new_asset/bg-simia.png') center/cover no-repeat,
        linear-gradient(to bottom, rgba(131, 168, 6, 0.7), rgb(239, 243, 228));
    padding-top: 30px;           /* beri jarak dari atas */
    padding-left: 20px;
    padding-right: 20px;
}

.kanan{
    flex: 0.5;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 56px 60px;
}

.utama{
    display: flex;
    min-height: 100vh;
}

.login-form {
    width: 100%;    
    /* max-width: 35px   0px; */
}

.login-form label{
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
}

.login-form input{
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 20px;
    font-size: 12px;
    background-color: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 2px;
    outline: none;
    transition: 0.3s ease;
}

.login-form input:focus {
    border-color: #fcb040;
    box-shadow: 0 0 0 4px rgba(252, 176, 64, 0.2);
    transform: translateY(-2px);
}

.judul-log{
    margin-bottom: 50px;
    text-align: center;
}

.judul-log h1{
    font-size: 28px;
    margin-top: 20px;
}

.judul-log img {
    width: 280px;
    height: auto;
    opacity: 0.95;
}

.judul-log p{
    font-size: 11px;
    margin-top: 1px;
}

.judul-pas{
    margin-bottom: 30px;
    text-align: center;
}

.judul-pas h1{
    font-size: 28px;
    margin-top: 20px;
}

.judul-pas img{
    width: 150px;
    height: auto;
    opacity: 0.95;
}

.judul-pas p{
    font-size: 11px;
    margin-top: 1px;
}

.konten{
    height: auto;
    display: flex;            /* jadikan flexbox */
    justify-content: center;  /* center secara horizontal */
    align-items: center;
}

.konten img{
    width: 150px;
}

button {
    width: 100%;
    padding: 12px;
    background: #a2c02f;
    color: white;
    border: none;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
    border-radius: 3px;
    margin-bottom: 14px;
    margin-top: 7px;
}

button:hover{
    transform: translateY(-2px);
    box-shadow: 0 10px 25px #c8d882;
}

.lupa{
    font-size: 14px;
    text-align: center;
}

.lupa a{
    color: #a2c02f;
    text-decoration: none;
}

.changepassword{
    width: 100%;
    /* max-width: 350px; */
}

.changepassword label{
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
}

.changepassword input{
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 20px;
    font-size: 12px;
    background-color: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 4px;
    outline: none;
    transition: 0.3s ease;
}

.changepassword input:focus{
    border-color: #fcb040;
    box-shadow: 0 0 0 4px rgba(252, 176, 64, 0.2);
    transform: translateY(-2px);
}

.bg-submited {
    background: #f4c430; /* ganti warna di sini */
}





/* ========================================
    HILANGKAN BAGIAN KIRI DI HP & TABLET (max 1024px)
    Desktop tetap tampil 2 kolom seperti semula
   ======================================== */

@media (max-width: 1024px) {
    .kiri {
        display: none !important;        /* hilang total di tablet & HP */
    }

    .utama {
        flex-direction: column;          /* jadi atas-bawah */
    }

    .kanan {
        flex: 1;
        padding: 50px 30px;              /* lega & nyaman di tablet/HP */
        width: 100%;
    }

    .login-form,
    .changepassword {
        max-width: 100%;                 /* form full lebar */
        padding: 0 10px;
    }

    .judul img {
        width: 130px;                    /* logo sedikit mengecil di tablet */
    }

    .judul h1 {
        font-size: 19px;
    }
}

/* Khusus HP sangat kecil (opsional, biar lebih rapi lagi) */
@media (max-width: 480px) {
    .kanan {
        padding: 40px 20px;
    }
    .judul img {
        width: 110px;
    }
}
