.container{
    border: 3px solid pink;
    border-radius: 60px;
    width: 350px;
    height: 400px;
    margin-top: 100px;
    background: linear-gradient(260deg,rgb(246, 46, 80),orange);
    box-shadow: 7px 5px ;
    padding: 100px 0 0 0;
    text-align: center;
}
.container input{
    margin-left: 20px;
    width: 250px;
    height: 40px;
    border: 1px solid white;
    border-radius: 40px;
    background-color: black;
    color: white;
    font-size: 13px;
    text-align: center;
    font-weight: bold;
}
.container button{
    height: 40px;
    width: 40px;
    border: 1px solid;
    border-radius: 60px;
    background-color: black;
}
.container i{
    color: aqua;
}
body{
    background-color: rgb(197, 254, 254);
}
.container h1{
    color: aqua;
    text-decoration: underline;
}
/*navbar edit*/
.navbar{
    border: 2px solid white;
    height: 80px;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: black;
    border-radius: 20px 20px 0 0px;
    margin-top: 10px;
    margin-bottom: 3px;
    padding-right: 20px;
    padding-left: 20px;
}

.navbar i{
    font-size: 20px;
    background-color: aliceblue;
    border-radius: 20px 20px 0 0px;
    border: 1px solid;
    border-radius: 70px;
    height: 40px;
    width: 40px;
    padding-top: 10px;
    box-shadow: 0 1px 10px rgb(255, 255, 255);
}

.navbar i:hover{
    background-color: gray;
    transform: translatey(-15px);
    width: 50px;
    width: 50px;
    font-size: 25px;
    box-shadow: 0 15px 10px rgb(255, 255, 255);
}
/*navbar end*/