@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    height: 100vh;
    width: 100%;
    background: #ff676d;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box {
    max-width: 400px;
    width: 100%;
}

.box .search-box {
    position: relative;
    height: 50px;
    max-width: 48px;
    margin: auto;
    margin: auto;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25s);
    border-radius: 25px;
    transition: all 0.3s ease;
}

#check:checked~.search-box {
    max-width: 380px;

}

.search-box input {
    position: absolute;
    height: 100%;
    width: 100%;
    border-radius: 25px;
    background: #fff;
    outline: none;
    border: none;
    padding-left: 20px;
    font-size: 18px;
}

.search-box .icon {
    position: absolute;
    right: -2px;
    top: 0;
    width: 50px;
    background: #ffffff;
    height: 100%;
    text-align: center;
    line-height: 52px;
    color: #ff676d;
    font-size: 20px;
    border-radius: 25px;
    border: solid;

}

#check:checked~.search-box .icon {
    background: #ff676d;
    color: #ffffff;
    width: 60px;
     border-radius: 0 25px 25px 0;
}
#check{
    display: none;
}
















/* position: absolute;
    height: 100%;
    width: 100%;
    border-radius: 25%;
    background: #fff;
    outline: none;
    border: none;
    padding-left: 20px;
    font-size: 18px;
}
.search-box .icon{
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    background: #ff676d;
}  */