*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins',sans-serif;
}
.container{
    width: 100%;
    min-height: 100vh;
    background:linear-gradient(120deg, #89defb, #66e4ea);
    color: white;
    padding-top:3% ;
    padding-left: 10%;
}
.container h1{
    display: flex;
    align-items: center;
    font-size: 35px;
    font-weight: 600;
    text-shadow:0 0 8px #0bb2ea;
}
.container h1 i{
width: 50px;
color: #0bb2ea;
font-size: 40px;
text-shadow: none;

}
.container button{
    padding: 10px 20px;
    border-radius: 55px;
    display: flex;
    align-items: center;
    margin-top: 2%;
    background:linear-gradient(to right,#0bb2ea,#64e8ee);
    color: white;
    font-size: 17px;
   cursor: pointer;
    border: none;
    transition: all 0.5s;
    outline: 0;

}
.container button:hover{
    box-shadow: 0 0 15px white;
    border: 1px solid #02b8f5;
}
.container button img{
 width: 25px;
 margin-right: 7px;

}
.input-box{
position: relative;
 width: 100%;
 max-width: 500px;
 min-height: 150px;
 background-color: whitesmoke;
 color: #333;
 padding: 20px;
 margin: 20px 0;
 outline: none;
 border-radius: 5px;

}
.input-box img{
    width: 25px;
    position: absolute;
    bottom: 15px;
    right: 15px;
    cursor: pointer;
}
