/* Import Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f0f2f5;
}

.main-header {
    background-color: #00abff; /* DIGANTI */
    padding: 20px;
    text-align: center;
    position: relative;
    min-height: 250px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.presenter-img {
    position: absolute;
    bottom: 50px;
    height: 280px;
    z-index: 1;
}

.logo {
    position: relative;
    z-index: 2;
    background-color: #fff;
    padding: 5px 10px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    display: inline-block;
    margin-bottom: -30px;
}

.logo img {
    height: 40px;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 20px 40px 20px;
}

.search-container {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 500px;
    text-align: center;
    box-sizing: border-box;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input[type="text"] {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
}

button {
    background-color: #00abff; /* DIGANTI */
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0089cc; /* DIGANTI (versi lebih gelap dari #00abff) */
}

.instructions {
    text-align: left;
    margin-top: 30px;
    color: #555;
}

#pesan-error {
    width: 100%;
    box-sizing: border-box;
}

.alert-error {
    background-color: #e0f4ff; /* DIGANTI (latar biru muda) */
    color: #005f8c; /* DIGANTI (teks biru tua) */
    border: 1px solid #b8e2f5; /* DIGANTI (border biru muda) */
    padding: 15px;
    border-radius: 8px;
    text-align: left;
    margin-bottom: 20px;
    font-weight: 500;
}

/* Tambahkan kode ini di bagian paling bawah style.css */

/* === STYLE BARU UNTUK PESAN SUKSES === */
.alert-success {
    background-color: #d4edda; /* Latar hijau muda */
    color: #155724; /* Teks hijau tua */
    border: 1px solid #c3e6cb; /* Border hijau muda */
    padding: 15px;
    border-radius: 8px;
    text-align: left;
    margin-bottom: 20px;
    font-weight: 500;
}