body {
           margin: 0;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(-45deg, #ff6b6b, #f06595, #ffbb00, #40c9a2);
            background-size: 400% 400%;
            animation: gradientBackground 15s ease infinite;
            overflow: hidden;
        }

        .login-container {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            max-width: 1200px;
            height: 80%;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            background-color: #ffffff;
        }

        .form-container {
            padding: 20px;
            border-radius: 8px;
            backdrop-filter: blur(10px); /* Efek blur */
            background: rgba(255, 255, 255, 0.3); /* Warna semi transparan */
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 400px;
        }

        .form-content h1 {
            font-size: 24px;
            margin-bottom: 20px;
            color: #333333;
            text-align: center;
            background-color: rgba(0, 123, 255, 0.1); /* Blue background with transparency */
            padding: 10px;
            border-radius: 5px;
        }

        .form-content p {
            font-size: 14px;
            color: #666666;
            text-align: center;
            margin-bottom: 20px;
        }

        .form-control {
            border-radius: 5px;
            border: 1px solid #ddd;
            padding: 10px 15px;
            font-size: 14px;
            margin-bottom: 15px;
            position: relative;
        }

        .form-control:focus {
            border-color: #007bff;
            box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.25);
        }

        .field-wrapper {
            margin-bottom: 20px;
            position: relative;
        }

        .field-wrapper svg {
            position: absolute;
            top: 70%; /* Geser ikon ke bawah dengan menambah nilai top */
            left: 10px;
            transform: translateY(-50%);
            color: #007bff;
            width: 20px;
            height: 20px;
        }

        .field-wrapper input {
            padding-left: 40px; /* Add padding to make room for icons */
            width: 100%;
        }

        .forgot-pass-link {
            color: #007bff;
            text-decoration: none;
        }

        .forgot-pass-link:hover {
            text-decoration: underline;
        }

        .btn-primary {
            background-color: #007bff;
            border: none;
            border-radius: 5px;
            padding: 10px 20px;
            color: #ffffff;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s, box-shadow 0.3s;
        }

        .btn-primary:hover {
            background-color: #0056b3;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .btn-primary:focus {
            outline: none;
            box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.25);
        }

        .image-container {
            width: 100%;
            height: 100%;
            background: url('../img/depan.png') no-repeat center center;
            background-size: cover;
            /* Ensure image scales properly */
            object-fit: cover;
            position: relative;
            border-radius:  20px;
             
            z-index: 0; /* Ensure image is behind the form */
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .login-container {
                flex-direction: column;
                height: auto;
                width: 90%;
            }

            .form-container, .image-container {
                width: 100%;
                height: auto;
            }

            .form-content h1 {
                font-size: 20px;
            }

            .form-content p {
                font-size: 12px;
            }

            .btn-primary {
                font-size: 14px;
            }
        }


        /* Animasi untuk form login */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-container {
    animation: fadeInUp 1s ease-out;
}

/* Animasi untuk tombol login */
@keyframes bounceIn {
    from {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    to {
        transform: scale(1);
    }
}

.btn-primary {
    animation: bounceIn 0.6s ease-out;
}

/* Animasi latar belakang bergerak */
@keyframes gradientBackground {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

body {
    margin: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(-45deg, #ff6b6b, #f06595, #ffbb00, #40c9a2);
    background-size: 400% 400%;
    animation: gradientBackground 15s ease infinite;
}

/* Menambahkan beberapa padding untuk login container agar tidak menempel di tepi */
.login-container {
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}