/*
   Auteur : Tiago + Lopes
   Date :   17.05.2021 / V1.0 
*/

body {
    background-color: grey;
}

#container {
    background-color: white;
    width: 90%;
    padding: 1em;
    border: 1px solid black;
    margin: auto;
    font-family: Verdana, Arial, serif;
}

.user-form {
    background-color: white;
    padding: auto;
}

.user-form .field {
    padding: 0.5em;
    background: #eeeeee;
}

.user-form .field input {
    display: inline-block;
}

.user-form .field label {
    width: 150px;
    display: inline-block;
}

.user-form .button {
    margin-top: 10pt;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-form input[type=submit] {
    color: #ffffff;
    background-color: rgb(190, 189, 189);
    border: 1cm;
    border-color: #858585;
    font-weight: bolder;
}