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

        body {
	    background-image: url('../images/kantor.jpg'); /* Sesuaikan path ke lokasi gambar */
    		background-size: cover; /* Untuk menyesuaikan gambar dengan layar */
    		background-repeat: no-repeat; /* Agar gambar tidak terulang */
    		background-position: center; /* Untuk memastikan gambar berada di tengah */
            font-family: 'Arial', sans-serif;
            background-color: #f8f9fa;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            margin: 0;
        }

        .container {
            background-color: #ffffff;
            padding: 50px;
            border-radius: 20px;
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
            text-align: center;
            width: 100%;
            max-width: 450px;
        }

        .logo {
            width: 100px; /* Ukuran logo */
            margin-bottom: 20px;
        }

        h1 {
            font-size: 26px;
            color: #333;
            margin-bottom: 30px;
        }

        .button-container {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .button-container button {
            font-size: 18px;
            padding: 15px;
            border-radius: 50px;
            border: 2px solid #007bff; /* Aksen biru pada border tombol */
            background-color: transparent;
            color: #007bff; /* Warna teks biru */
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
        }

        .button-container button:hover {
            background-color: #007bff;
            color: white;
            transform: translateY(-2px);
        }

        .button-container button:active {
            transform: translateY(0);
            box-shadow: 0 6px 18px rgba(0, 123, 255, 0.3);
        }

        .button-container button:focus {
            outline: none;
            border-color: #0056b3;
        }
