*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
body{
    background-color: rgb(239, 236, 236);
}
.container{
    display: flex;
    justify-content: center;
    margin-top: 70px;
    /* align-items: center; */
}

.box{
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;

}

img{
    height: 40px;
    width: 40px;
    margin-left: 44%;
    margin-bottom: 25px;
}

.para{
    text-align: center;
    margin-bottom: 25px;
    font-weight: 600;
    color: gray;
    font-size: 15px;
}

h3{
    text-align: center;
    margin-bottom: 25px;
    font-weight: 600;
    font-size: 20px;
}

.inp{
    font-size: 15px;
    font-weight: 600;
    color: gray;
    margin-bottom: 10px;
}

input{
    margin-bottom: 10px;
    height: 35px;
    width: 300px;
    border: none;
    background-color: rgb(221, 218, 216);
    border-radius: 5px;
    padding: 10px;
}

.forgot{
    text-align: end;
    margin-top: 1px;
}

.forgot a{
    color: gray;
    text-decoration: none;
    font-size: 15px;
}

.password:hover{
    border-bottom: 2px solid yellow;
}

.btn-container{
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 30px;
    margin-top: 25px;
    padding: 20px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    background-color: rgb(252, 252, 17);
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.btn:hover{
    background-color: rgb(226, 226, 17);
}