*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.search input{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 16px;
    background: transparent;
    width: 25px;
    height: 25px;
    padding: 10px;
    border: solid 3px #9a86fd;
    outline: none;
    border-radius: 35px;
    transition: all 0.5s;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 0 20px 0 #9a86fd;
}
.search input::placeholder{
    color: blue;
    opacity: 0;
    transition: opacity 150ms ease-out;
}
.search input:focus::placeholder{
    opacity: 1;
}
.search input:hover{
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 #ffb870;
}
.search input:focus,input:not(:placeholder-shown){
    width: 250px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 #9a86fd;
}

.login{
    position: absolute;
    top: 100px;
    left: 1150px;
    font-size: 28px;
    color: gray;
    word-spacing: 20px;
}
.login a{
    text-decoration: none;
    color: gray;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 #9a86fd;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.add_to_cart{
    position: absolute;
    top: 100px;
    left: 1220px;
    font-size: 28px;
    color: gray;
    word-spacing: 20px;
}
.add_to_cart a{
    text-decoration: none;
    color: gray;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 #9a86fd;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.Home_Page{
    position: absolute;
    top: 100px;
    left: 1290px;
    font-size: 30px;
    color: gray;
    
}
.Home_Page a{
    text-decoration: none;
    color: gray;
}