JSFiddle - React, Tailwind, and code Playground

by Danja Wittmann

HTML

<div id="block"><p>E-mail adres...</p></div>

CSS

p {
    position: absolute;
    font-size: 30px;
    font-family: Tahoma;
    text-align: center;
    width: 100%;
}
#block {
    margin: 30px;
    border: 2px solid red;
    width: 400px;
    height: 100px;
    border-radius: 10px;
    position: absolute;
}
#block:after{
    content: '';
    border-bottom: 2px solid red;
    height: 60px;
    width: 260px;
    position: absolute;
    background: white;
    border-radius: 100%;
    bottom: -25px;
    left: 65px;
}
#block:before{
    content: '';
    border-top: 2px solid red;
    height: 60px;
    width: 260px;
    position: absolute;
    background: white;
    border-radius: 100%;
    top: -25px;
    left: 65px;
}