*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    background: rgba(139, 127, 127, 0.37); 
}
.container{
    display: flex;
    justify-content: center;
    margin-top: 10%;
    line-height: 2;
}
.form-wrapper{
    border: 1px solid black;
    padding: 10px;
    width: 400px;
    height: 400px;
    border-radius: 6px;
}
input{
    width: 370px;
    height: 40px;
}
.login-btn{
    width: 370px;
    height: 40px;
    margin-top: 13px;
    background: black;
    color: white;
    border: 0;
    border-radius: 7px;
    transition: 0.9s;
    cursor: pointer;
}
.login-btn:hover{
    background: white;
    color: black;
    border: 1px solid black;

}