body {
    font-family: Arial, sans-serif;
    background: #fff9db; /* kuning lembut */
    margin: 0;
    padding: 0;
}

.container {
    max-width: 600px;
    margin: 40px auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    text-align: center;
}

.logo {
    width: 90px;
    margin-bottom: 15px;
}

h1 {
    color: #333;
    font-size: 24px;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

input[type="text"] {
    padding: 10px;
    width: 100%;
    max-width: 300px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

button {
    padding: 10px 20px;
    background: #f0ad4e;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background: #ec971f;
}

ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: 15px;
}

li {
    margin-bottom: 10px;
    font-size: 16px;
    word-wrap: break-word;
}

@media (max-width: 480px) {
    h1 {
        font-size: 20px;
    }

    .logo {
        width: 70px;
    }

    input[type="text"], button {
        width: 100%;
    }

    button {
        padding: 10px;
    }
}

.subheading {
    margin: 0;
    font-size: 16px;
    color: #666;
    margin-bottom: 5px;
}

.subheading:last-of-type {
    margin-bottom: 20px; 
}

