html {
    height: 100%;
}
body{
    background: linear-gradient(30deg, #313131, #6F6F6F);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.formulaire-section{
    background-color: #f5f5f5;
    height: 40%;
    width: 40%;
    border-radius: 5px;
    box-shadow: 0 2px 10px #363636;
    padding: 20px;
}

h1{
    margin: 0;
    font-family: "Roboto Light", serif;
}

label{
    font-family: "Roboto Light", serif;
    margin-bottom: 5px;
}

.groupPasswordLabel{
    display: flex;
    flex-direction: column;
    margin: 20px 0;
    width: 100%;
}

.password-input{
    border: 0;
    border-bottom: 1px solid grey;
    height: 30px;
}

.password-input:focus{
    border: 0;
    background-color: #ffddc0;
}

.showPasswordGroup{
    display: flex;
    align-items: center;
}

input:invalid {
    border: 2px solid red;
}

.error{
    color: red;
    font-weight: bold;
}

form{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
