body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #fff;
}

.container {
    text-align: center;
}

.logo {
    max-width: 272px; /* Adjust this if your logos are naturally larger or smaller */
    height: auto;
    margin-bottom: 20px;
}

.search-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #dfe1e5;
    border-radius: 24px;
    width: 584px;
    max-width: 90%;
    height: 44px;
    margin: 0 auto;
    box-shadow: 0 2px 5px 1px rgba(64,60,67,.16);
}

.search-bar:hover {
    box-shadow: 0 2px 8px 1px rgba(64,60,67,.24);
}

.search-bar input {
    flex: 1;
    height: 100%;
    border: none;
    outline: none;
    padding: 0 20px;
    font-size: 16px;
    background: transparent;
}

.search-bar button {
    background-color: #f8f9fa;
    border: 1px solid #f8f9fa;
    border-radius: 4px;
    color: #3c4043;
    font-family: Arial, sans-serif;
    font-size: 14px;
    margin: 11px 4px;
    padding: 0 16px;
    line-height: 27px;
    height: 36px;
    min-width: 54px;
    text-align: center;
    cursor: pointer;
    user-select: none;
}

.search-bar button:hover {
    border: 1px solid #c6c6c6;
    color: #222;
    box-shadow: 0 1px 1px rgba(0,0,0,.1);
}