body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000; /* Latar belakang hitam */
    color: #fff; /* Warna teks putih untuk kontras dengan latar belakang hitam */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
}

.logo-container {
    margin-bottom: 20px;
}

.logo {
    width: 400px;
    height: auto;
}

main {
    width: 100%;
    max-width: 600px;
}

#search-form {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
}

#search-input {
    padding: 10px;
    width: calc(100% - 120px); /* Menyisakan ruang untuk tombol pencarian */
    border: 1px solid #ccc;
    border-radius: 0; /* Menjadikan kolom input menjadi bentuk kotak */
    font-size: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    margin-right: -1px; /* Mencegah double border */
    z-index: 1;
}

#search-button {
    padding: 10px 20px;
    border: 1px solid #ccc;
    border-radius: 0; /* Menjadikan tombol menjadi bentuk kotak */
    background-color: #4285F4;
    color: white;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

#search-button:hover {
    background-color: #357ae8;
}

/* Style untuk tampilan mobile */
@media screen and (max-width: 600px) {
    body {
        padding: 20px;
        height: auto;
    }

    .logo {
        width: 250px;
    }

    #search-input {
        width: calc(100% - 120px); /* Menyisakan ruang untuk tombol pencarian */
    }

    #search-button {
        width: 100px; /* Lebar tombol pencarian */
    }
}
