* {
    font-family: "Poppins", sans-serif;
    scroll-behavior: smooth;
    box-sizing: border-box;
}

html, body { /* Pastikan html dan body mengisi seluruh tinggi viewport */
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden; /* Mengatur overflow secara hati-hati: hidden untuk mencegah scrollbar */
}

body {
    background-color: #85b5ed; /* Pertahankan background biru */
}

.left-side {
    width: 50vw;
    height: 100vh;
    background-color: white;
    border-radius: 0px 70px 70px 0px;
}

.container {
    display: flex;
    justify-content: center; /* Pusat horizontal untuk konten dalam container */
    align-items: center; /* Pusat vertikal untuk konten dalam container */
    min-height: 100vh; /* Memastikan container setidaknya setinggi viewport */
    width: 100vw; /* Memastikan container mengambil lebar penuh viewport */
    margin: 0;
    padding: 0;
    /* overflow: hidden; /* Tambahkan ini jika masih ada scrollbar pada container */
}

.right-side {
    /* Properti ini akan diwarisi dari .container atau diatur ulang untuk centering di dalam .container */
    /* Pastikan tidak ada margin yang mendorong keluar dari viewport */
    margin: 0; /* Hapus margin auto jika ada */
    padding: 0; /* Hapus padding jika ada yang menyebabkan overflow */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%; /* Agar bisa memusatkan signin-box di dalamnya */
    height: 100%; /* Agar bisa memusatkan signin-box di dalamnya */
}

.signin-box {
    border-radius: 20px;
    padding: 20px 50px;
    width: 450px;
    height: fit-content;
    background-color: white;
    max-width: 95%; /* Responsif: memastikan tidak terlalu lebar di layar kecil */
    box-sizing: border-box; /* Penting untuk padding agar tidak menambah ukuran total */
}
.signin-header {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    padding-top: 20px
}

.signin-header p:first-child {
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.2);
    margin-bottom: 3rem;
    font-size: 30px;
}

.signin-header p:last-child {
    text-align: left;
    font-size: 1.5rem;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;  
}

.logo {
    width: 50px;  /* Increase logo size */
    height: auto;
    margin-right: 10px;
}

.si-bk {
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    font-size: 36px;  /* Increase font size */
}

.underline {
    width: 100%;  /* Width of the underline */
    border: 1px solid #000;  /* Color of the underline */
    margin: 10px auto;  /* Center and add space */
}



.signin-content {
    margin-top: 30px;
    margin-bottom: 70px;
}

.id {
    line-height: 2px;
    position: relative;
    width: 100%;
}
.id p {
    font-weight: 500;
    opacity: 0.5;
    font-size: 18px;
}

form .id-input {
    width: 100%;
    border-radius: 10px;
    font-size: 20px;
    display: flex;
    align-items: center;
    padding: 10px;
    border: 2px solid rgba(0, 0, 0, 0.339);
    opacity: 0.5;
    box-sizing: border-box;
}

.id-input input {
    flex: 1;
    margin-left: 10px;
    border: none;
    outline: none;
    background-color: transparent;
    color: #333;
}

.id-input input[type="text"]:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px white inset; /* Atur latar belakang autofill */
}

.password {
    margin-top: 30px;
    line-height: 2px;
    position: relative;
    width: 100%;
}
.password p {
    font-weight: 500;
    opacity: 0.5;
    font-size: 18px;
}

.password-input {
    border-radius: 10px;
    font-size: 20px;
    display: flex;
    align-items: center;
    padding: 10px;
    border: 2px solid rgba(0, 0, 0, 0.339);
    opacity: 0.5;
}

.password-input input {
    flex: 1;
    margin-left: 10px;
    border: none;
    outline: none;
    background-color: transparent;
    color: #333;
}

.password-input input[type="password"]:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px white inset; /* Atur latar belakang autofill */
}

.password-input input[type="text"]:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px white inset; /* Atur latar belakang autofill */
}

button {
    padding: 10px 30px;
    width: 100%;
    border: 0;
    border-radius: 10px;
  background-color: #6fc5ff;
    color: #ffffff;
    font-weight: Bold;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    margin-bottom: 10px;
}
button:hover {
    /* background-color: #6fc5ff; */
    /* box-shadow: 0 0 20px #6fc5ff50; */
    transform: scale(1.1);
}

button:active {
    background-color: #3d94cf;
    transition: all 0.25s;
    -webkit-transition: all 0.25s;
    box-shadow: none;
    transform: scale(0.98);
}

/* size layar hingga 768px */
@media screen and (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .left-side {
        display: none;
    }

    .right-side {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 20px;
        height: 100vh;
        box-sizing: border-box;
    }

    .signin-box {
        width: 100%;
        max-width: 400px;
        padding: 20px 30px;
        background-color: white;
        border-radius: 20px;
    }

    .signin-header p:last-child {
        text-align: left;
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 920px) {
    .left-side {
        display: none;
    }

    .right-side {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
        width: 100%;
        padding: 20px;
    }
}
