
.searchBox {
    position: absolute;
    left: 75%;
    transform:  translate(-50%,50%);
    background: #ec69d7;
    height: 50px;
    border-radius: 50px;

}

.searchBox:hover > .searchInput {
    width: 250px;
}

.searchBox:hover > .searchButton {
  background: #fff;
  color : #0099ff;
}

.searchButton {
    color: white;
    float: right;
    border: none;
    width: 50px;
    height: 50px;
    padding: 10px;
    border-radius: 50%;
    background: #f710b2;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.4s;
}

.searchInput {
    background: none;
    outline:none;
    border: none;
    float:left;
    padding: 0;
    color: white;
    font-size: 16px;
    transition: 0.4s;
    line-height: 50px;
    width: 0px;

}

@media screen and (max-width: 620px) {
.searchBox:hover > .searchInput {
    width: 150px;
    padding: 0 6px;
}
}