
        /* Reset CSS */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            margin: 0;
        }

        /* Layout Grid */
        .container {
            display: grid;
            grid-template-rows: 1fr 5fr auto;
            min-height: 100vh;
        }

        header {
            background: #ffffff;
            display: flex;
            align-items: center;
            padding: 15px 20px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        header img {
            width: 50px;
            height: 50px;
            margin-right: 10px;
        }

        header h1 {
            font-size: 1.5rem;
            color: #333;
        }

        main {
            display: grid;
            grid-template-columns: 2fr 1fr;
            background: #4a90e2;
            color: white;
            position: relative;
        }

        .info {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 20px;
        }

        .info h2 {
            font-size: 1.8rem;
            margin-bottom: 15px;
        }

        .info p {
            font-size: 1rem;
            line-height: 1.5;
        }

        .login-form-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 40px;
            height: 100%;
        }

        .login-form {
            background: #ffffff;
            padding: 40px 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            animation: fadeIn 1s ease-out;
            width: 100%;
            max-width: 350px;
        }

        .login-form h3 {
            font-size: 1.5rem;
            margin-bottom: 30px;
            color: #333;
            text-align: center;
        }

        .login-form label {
            font-size: 1rem;
            margin-bottom: 5px;
            color: #555;
        }

        .input-group {
            position: relative;
            margin-bottom: 20px;
        }

        .input-group input {
            width: 100%;
            padding: 12px 45px 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }

        .input-group i {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            right: 15px;
            color: #888;
            cursor: pointer;
        }

        button {
            background: #5a9cff;
            color: white;
            padding: 12px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1rem;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        button:hover {
            background: #0033a1;
        }


/* Warna tombol */
    .button.red {
        background-color: #e74c3c;
    }

    .button.red:hover {
        background-color: #c0392b;
        transform: translateY(-2px);
        box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    }

    .button.green {
        background-color: #2ecc71;
    }

    .button.green:hover {
        background-color: #27ae60;
        transform: translateY(-2px);
        box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    }


        footer {
            background: #333;
            color: white;
            text-align: center;
            padding: 10px;
            font-size: 0.9rem;
        }

         .button i {
        margin-right: 10px;
    }


    .button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 10px 20px;
        font-size: 1rem;
        font-weight: bold;
        color: #fff;
        text-decoration: none;
        border-radius: 5px;
        text-align: center;
        transition: transform 0.3s, box-shadow 0.3s;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }


/* Animasi untuk h2 */
@keyframes dropDown {
    0% {
        opacity: 0;
        transform: translateY(-100px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animasi untuk p */
@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Terapkan animasi */
.info h2 {
    animation: dropDown 1s ease-out;
}

.info p {
    animation: slideIn 1s ease-out;
    animation-delay: 0.5s; /* Beri jeda agar p muncul setelah h2 */
}





        /* Animation */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsiveness */
        @media (max-width: 768px) {
            main {
                grid-template-columns: 1fr;
            }

            .info {
                text-align: center;
            }
        }

        /* Ikon dalam tombol */
   

    /* Responsif untuk tombol */
    @media screen and (max-width: 768px) {
        .button {
            font-size: 0.9rem;
            padding: 8px 15px;
        }
        .main-content div {
            flex-direction: column;
        }
    }
