body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 90vh;
}

.container {
    width: 100%;
    max-width: 700px;
    padding: 20px;
}

.logo {
    width: 100%;
    max-width: 500px;
}

.clear-btn {
    display: none;
    cursor: pointer;
    font-size: 20px;
    color: #888;
    margin-left: 10px;
    transition: color 0.3s;
}

.clear-btn:hover {
    color: #d93025;
}

.search-box {
    display: flex;
    align-items: center;
    background: white;
    border: 1px solid #ccc;
    border-radius: 30px;
    padding: 10px 15px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.search-box i {
    color: #888;
    font-size: 18px;
    margin-right: 10px;
}

.search-box input {
    flex-grow: 1;
}

input[type="text"] {
    width: 100%;
    border: none;
    outline: none;
    font-size: 18px;
    padding: 10px;
    text-align: left;
    flex-grow: 1;
}

.button-group {
    display: flex;
    justify-content: center;
    gap: 10px; /* Menambahkan jarak antara tombol */
    padding: 20px;
}

button {
    background-color: #d93025; /* Warna merah yang sama */
    color: white;
    border: none;
    font-size: 14px;
    cursor: pointer;
    border-radius: 20px;
    width: 140px; /* Ukuran tombol seragam */
    text-align: center;
    height: 30px;
}

button:hover {
    background-color: #b2221f;
}

button:focus {
    outline: none;
}


.language-selector {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.language-selector a {
    text-decoration: none;
    margin: 0 10px;
    color: blue;
    font-weight: bold;
    font-size: 18px;
}

.language-selector a:hover {
    text-decoration: underline;
}

.privacy-policy {
    display: block;
    margin-top: 10px;
    text-align: center;
    font-size: 9px;
    color: blue;
    text-decoration: none;
    font-weight: bold;
}

.privacy-policy:hover {
    text-decoration: underline;
}

footer {
    margin-top: 30px;
    font-size: 16px;
    color: #666;
}

.message-container {
    color: #000000;
    background-color: #c9dbff;
    border-color: #d7dce6;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .container {
        width: 100%;
        padding: 15px;
        max-width: fit-content;
    }
    .logo {
        width: 80%;
        max-width: 250px;
    }
    .search-box {
        width: 100%;
        max-width: 288px;
    }
    input[type="text"] {
        font-size: 16px;
        padding: 10px;
    }
    button {
        font-size: 14px;
        padding: 8px 14px;
    }
    .language-selector a {
        font-size: 14px;
    }
    footer {
        font-size: 14px;
    }
}

@media (max-width: 380px) {
    .container {
        width: 100%;
        padding: 15px;
        max-width: fit-content;
    }
    .logo {
        width: 70%;
        max-width: 400px;
    }
    .search-box {
        width: 100%;
        max-width: 280px;
        padding: 8px;
    }
    input[type="text"] {
        font-size: 14px;
        padding: 6px;
    }
    button {
        font-size: 12px;
        padding: 6px 12px;
    }
    .language-selector a {
        font-size: 12px;
    }
    footer {
        font-size: 12px;
    }
}
.descamanih {
    font-family: "Dancing Script", serif;
    font-size: 27px;
    margin-top: 5px;
}