body {
    font-family: sans-serif;
    margin: 0;
    background-color: #f2f2f2;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.logo {
    font-size: 4rem;
    font-weight: bold;
    color: #4285f4;
    margin-bottom: 2rem;
}

#search-form {
    width: 100%;
    max-width: 600px;
}

.search-bar {
    display: flex;
    border: 1px solid #dfe1e5;
    border-radius: 24px;
    background-color: #fff;
    box-shadow: 0 1px 6px rgba(32, 33, 36, 0.28);
}

#search-input {
    flex-grow: 1;
    border: none;
    padding: 14px 20px;
    font-size: 1rem;
    background-color: transparent;
}

#search-input:focus {
    outline: none;
}

button[type="submit"] {
    background-color: #4285f4;
    color: #fff;
    border: none;
    padding: 14px 20px;
    font-size: 1rem;
    border-radius: 0 24px 24px 0;
    cursor: pointer;
}
