*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}



body {

   display: flex;
     justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: linear-gradient(to right, #4daf54, #3d8880);
}

.input {
    width:0px;
    height: 70px;
    background-color: black;
    color: white;
    /* padding-left: 30px;
    padding-right: 30px; */
    border-radius:10px 0 0 10px;
    border: unset;
    font-size: 30px;
}
.input:focus {
    outline: none;
}
.search {
    /* display: flex; */
    /* justify-content: center;
    align-items: center; */
    height: 70px;
    width: 70px;
    border-radius: 10px;
    margin-left: -2px;
    font-size: 30px;
    border: unset;
}
.search:hover {
    color: white;
    background-color: blue;
}
.show {
    display: block;
    border-radius: 0 10px 10px 0 ;
    
}

.translateX
{
    width:300px;
    height: 70px;
    background-color: black;
    color: white;
    padding-left: 30px;
    padding-right: 30px;
    border-radius:10px 0 0 10px;
    border: unset;
    font-size: 30px;
    transform: translateX(-100px 0 );
    transition: 0.5s;
}
.translateX__2 {
    transform: translateX(0 0);
    transition: 0.5s;
}