*{
    font-family: sans-serif;
}
body{
      
    background-image: linear-gradient(rgb(17, 17, 17), whitesmoke);
}
.box{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
.container{
    width: 350px;
    display: flex;
    flex-direction: column;
    padding: 0 15px 0 15px;
}
.logo{
    width: 35px;
    display: flex;
    justify-content: center;
    padding: 10px 0 10px 0;
    padding-left: 100px;
    
}
span{
    color: whitesmoke;
    font-size: small;
    display: flex;
    justify-content: center;
    padding: 10px 0 10px 0;
}
.p{
    color:black;
    font-size: 15px;
    display: flex;
    padding-left: 80px;
    justify-content: center;
    padding: 10px 0 10px 0;
}
.input-field .input{
    height: 45px;
    width: 87%;
    border: none;
    border-radius: 30px;
    color: grey;
    font-size: 15px;
    padding: 0 0 0 42px;
    background: rgba (255,255,255,0.1);
    outline: none;
}
i{ 
    position: relative;
    top: -31px;
    left: 17px;
    color: grey;
}

::-webkit-input-placeholder{
    color: whitesmoke;
}

.submit{
    border: none;
    border-radius: 30px;
    font-size: 15px;
    font-weight: bold;
    height: 45px;
    outline: none;
    width: 100%;
    color: #111111;
    background:rgba(255,255,255,0.7);
    cursor: pointer;
    transition: 0.3s;
}
.submit :hover{
    box-shadow: 1px, 5px, 7px, 1px rgba (0,0,0,0.2);
}
.bottom{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    color: whitesmoke;
    font-size: small;
    margin-top: 10px;
}
.right{
    display: flex;
}

label a{
    text-decoration: none;
    color: whitesmoke;
}



