body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
}

.search-container {
    text-align: center;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.title {
    font-size: 24px;
    margin-bottom: 20px;
}

.search-box {
    display: inline-flex;
    align-items: center;
    box-shadow: 0 1px 6px rgba(32, 33, 36, 0.28);
    border-radius: 24px;
    background: #fff;
    padding: 3px 20px;
}

.search-box .material-icons {
    color: #9e9e9e; /* Grey color for the icon */
    font-size: 20px; /* Adjust size as needed */
}

.search-box input[type="text"] {
    border: none;
    outline: none;
    padding: 10px 20px;
    width: 460px; /* Adjust as needed, considering the icon's width */
    font-size: 16px;
    border-radius: 20px;
}


.search-box button {
    border: none;
    outline: none;
    background: transparent;
    cursor: pointer;
    padding: 10px 15px;
}

/* Optional: Style for hover effect on the button */
.search-box button:hover {
    background-color: #e8f0fe;
}


.logo {
    max-width: 400px; /* or the width you desire */
    height: auto; /* maintains aspect ratio */
    margin-bottom: 20px;
    display: block; /* ensures the image is block-level for centering */
    margin-left: auto;
    margin-right: auto;
}



/* Media Query for Mobile Devices */
@media screen and (max-width: 600px) {
    .search-box input[type="text"] {
        width: calc(100% - 40px); /* Adjust width considering padding */
    }

    .logo {
        max-width: 40%; /* Larger logo on smaller screens */
    }
}