body{
    background-color: rgb(245, 160, 160);
}
h1{
    text-align: center;
    font-size: 50px;
}
#container{
    display: flex;
    flex-direction: column;
    align-items: center;
}
#box{
    width: 300px;
    background-color: white;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px;
    border-radius: 10px;
}
#username{
    color: black;
    padding: 10px;
    width: 290px;
    height: 30px;
    font-size: 18px;
    margin-bottom: 17px;
    border-radius: 5px;
}
#password{
    color: black;
    padding: 10px;
    width: 290px;
    height: 30px;
    font-size: 18px;
    margin-bottom:20px ;
    border-radius: 5px;
}
#bt{
    color: black;
    width: 313px;
    height: 50px;
    font-size: 21px;
    font-weight: 600;
    cursor: pointer;
    background-color:rgb(245, 160, 160) ;
    border: 1px solid rgb(245, 160, 160);
    border-radius: 5px;
}
#bt:hover{
    background-color:rgb(212, 131, 131) ;
}
#bt:active{
    background-color: rgb(156, 73, 73);
}
hr{
    width: 313px;
    padding: 0px;
    margin-bottom:25px ;
}