@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300&display=swap');
body{
    background: #eee;
    padding-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: 'Ubuntu', sans-serif;
}
h2{
    background: linear-gradient(50deg,rgb(238, 175, 3),rgb(21, 243, 158),rgb(245, 79, 29));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}
form{
    display: flex;
    align-items: center;
    width: 75%;
    height: 55px;
    background: #fff;
    border-bottom: 2px solid rgb(170, 169, 169);
    box-shadow: 15px 15px 20px rgb(170, 169, 169);
}
form i{
    margin: 8px;
    color: rgb(156, 156, 156);
}form input{
    border: none;
    outline: none;
    height: 65%;
    margin: 5px;
    align-items: center;
    width: 100%;
    border-bottom: 2px solid teal;
    padding-left: 5px;
    letter-spacing: 0.5px;
}
form button{
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    outline: none;
    height: 100%;
    width: 88px;
    background: teal;
}form button p{
    color: #fff;
}form button i{
    color: #fff;
}
@media(max-width:800px){
    form{
        width: 91%;
    }
}