body,
      html {
        margin: 0;
        padding: 0;
        height: 100%;
        font-family: Arial, sans-serif;
      }

      .background-image {
        background-image: url("../assets/blue_wallpaper.jpg");
        background-size: cover;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
      }

      .container {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
      }

      .login-form {
        background-color: rgba(255, 255, 255, 0.8);
        padding: 30px;
        border-radius: 10px;
        text-align: left;
        width: 400px;
        height: fit-content;
        box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
        position: relative;
      }

      h4,
      h1 {
        color: rgb(70, 131, 255);
        margin: 0;
      }

      h4 {
        font-size: 18px;
        margin-top: 20px;
      }

      h1 {
        font-size: 28px;
        margin-bottom: 30px;
      }

     .logo {
    position: absolute;
    top: 15%; /* Tengah vertikal */
    right: 7px; /* Jarak dari sisi kanan */
    transform: translate(0, -50%); /* Untuk menengahkan vertikal */
    width: 60px; /* Lebar gambar */
    height: auto; /* Tinggi gambar menyesuaikan proporsi */
}


      form {
        margin-top: 20px;
        width: 100%;
        position: relative; /* Perlu untuk menempatkan teks dan logo */
      }

      .logo-with-text {
        display: flex;
        align-items: center;
      }

      .logo-text {
        margin-right: 10px; /* Jarak antara teks dan logo */
      }

      input[type="text"],
      input[type="password"] {
        width: calc(100% - 30px);
        padding: 12px;
        margin-bottom: 20px;
        border: 2px solid #ddd;
        border-radius: 5px;
        transition: all 0.3s ease;
        font-size: 16px;
      }

      input[type="text"]:focus,
      input[type="password"]:focus {
        border-color: rgb(70, 131, 255);
        box-shadow: 0px 0px 10px rgba(11, 0, 127, 0.5);
      }


       /* Style untuk ikon mata */
        .eye-icon {
            position: absolute;
            top: 38%;
            right: 3%;
            transform: translate(0, -50%);
            cursor: pointer;
            transition: transform 0.3s ease; /* Animasi untuk transformasi */
            font-size: 20px;
            color: #aaa; /* Warna default ikon */
            z-index: 1; /* Pastikan ikon berada di atas input */
        }

        /* Efek hover untuk ikon mata */
        .eye-icon:hover {
            color: rgb(70, 131, 255); /* Ganti warna ikon saat dihover */
        }

        /* Animasi saat mata terbuka */
        .eye-icon.open {
            transform: translate(0, -50%) rotate(-30deg); /* Rotasi ikon saat terbuka */
        }

        /* Animasi saat mata tertutup */
        .eye-icon.close {
            transform: translate(0, -50%) rotate(0deg); /* Kembalikan rotasi ikon ke posisi awal */
        }

      button {
        width: calc(100% - 0px);
        padding: 12px;
        background-color: rgb(70, 131, 255);
        color: white;
        cursor: pointer;
        border: none;
        border-radius: 5px;
        transition: all 0.3s ease;
        font-size: 16px;
      }

      button:hover {
        background-color: rgb(0, 59, 176);
      }

      .register-text {
        text-align: center;
        margin-top: 20px;
      }

      .register-text a {
        color: rgb(70, 131, 255);
        text-decoration: none;
      }

      .register-text a:hover {
        color: black;
        text-decoration: underline;
      }