.searchForm {
    display: flex;
    justify-content: center; /* Center the form horizontally */
    align-items: center; /* Center the form vertically */
    text-align: center; /* Center align the form contents */
}

.searchForm input[type="text"] {
    height: 36px;
    width: calc(85% - 40px);
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-top: 20px;
    margin-bottom: 10px; 
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 768px) {
    .searchForm input[type="text"] {
         width: calc(90% - 40px);
        height: 30px;
        padding: 10px;
        font-size: 16px;
        border-radius: 5px;
        border: 1px solid #ccc;
        margin-top: 20px;
        margin-bottom: 10px;
        box-shadow: 0 0px 0px rgba(0, 0, 0, 0.1);
    }
}