.search-form{
    display: flex;
    gap: 16px;
    align-items: end;
}
div.row{
    width: inherit;
}
form.form{
    width: inherit;
    max-width: unset;
}
.search-elements{
    flex: 1;
}

@media (max-width: 600px){
    .search-form{
        flex-direction: column;
    }
    .search-elements{
        width: 100%;
    }
}