.divSearch{

}
.divSearch label{
display: block;
position: relative;
}
.divSearch label:before{
content: "search";
font-family: "Material Symbols Outlined", serif;
position: absolute;
font-size: 24px;
display: flex;
align-items: center;
height: 100%;
padding-left: 15px;
color: var(--g2-color);
transition: all 0.5s ease-out 0s;
}
.divSearch label input{
background-color: #E9E9F2;
border-radius: 5px;
border: none;
font-size: 14px;
font-family: var(--gfont1-family), serif;
padding: 15px 48px;
width: 320px;
box-sizing: border-box;
outline-style:none;
}
.divSearch label input:focus{
box-shadow: inset 0 0 0 1px var(--g1-color);
}

label:has(input:focus)::before {
color: var(--g1-color);
}
