I'm trying to recreate Google. When you focus on the search bar at Google.com, the bottom border will unstyle the rounded border. So I tried to make this effect by setting focus to unstyle bottom border-radius, but this will change the top border's shape.
the code I write is roughly like this.
<link href="https://cdnjs.cloudflare.com/ajax/libs/tailwindcss/2.2.19/tailwind.min.css" rel="stylesheet"/>
<div class="rounded-[24px] bg-white px-3 focus-within:rounded-b-none">
<input type="text" class="w-full outline-none" />
</div>