body{
    text-align: center;
    background-color: beige;
}
button{
    color: black;
    border-radius: 5px;
    border-color: black;
    background-color: grey;
}
button:hover{
    background-color: rgb(78, 78, 78);
}
input[type="submit"]{
    color: black;
    border-radius: 5px;
    border-color: black;
    background-color: grey;
    height: 30px;
    width: 60px;
    margin: 10px;
}
input[type="submit"]:hover{
    background-color: rgb(78, 78, 78);
}
input[type="password"]{
    background-color: rgb(192, 192, 171);
    margin: 5px;
}
input[type="password"]:hover{
    background-color: rgb(124, 124, 112);
}
input[type="text"]{
    background-color: rgb(192, 192, 171);
    margin: 5px;
}
input[type="text"]:hover{
    background-color: rgb(124, 124, 112);
}
input[type="number"]{
    background-color: rgb(192, 192, 171);
    margin: 5px;
}
input[type="number"]:hover{
    background-color: rgb(124, 124, 112);
}
.bigbutton{
    width: 100 !important;
}