I also had this problem and it took my health to put back the f**** magnifier.
You have to create an override of the mod_finder in public_html\templates\purity_iii\html\mod_finder\default.php
Then find purity_iii\tpls\blocks\header.php and
replace this
<?php if ($this->countModules('head-search')) : ?>
<!-- HEAD SEARCH -->
<div class="head-search<?php $this->c('head-search')?>">
<jdoc:include type="modules" name="<?php $this->p('head-search') ?>" style="raw" />
</div>
<!-- //HEAD SEARCH -->
<?php endif ?>
with this
<?php if ($this->countModules('head-search')) : ?>
<!-- HEAD SEARCH -->
<div class="head-search<?php $this->c('head-search')?>">
<div class="search"> <!-- Добавено обвиване -->
<jdoc:include type="modules" name="<?php $this->p('head-search') ?>" style="raw" />
</div> <!-- Затваряне на обвивката -->
</div>
<!-- //HEAD SEARCH -->
<?php endif ?>
I am sure that this is a quite stupid solution and will be great if somebody shares how to do it correctly