
body {
    height : 100vh;
    background-color: #1E90FF;
}

h1 {
    text-align: center;
}
input {
    border : none;
    border-radius : 15px;
    width: calc(95%);
}

.fondGris {
    background-color: #C1BDB3;
    border-radius: 20px;
}

.centrer {
    text-align : center;
}

button {
    border-radius: 15px;
    width : 90%;
}

.btnCancel {
    background-color: red;
}

.btnSubmit {
    background-color: greenyellow;
}
button:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

label{
    color : black;
    font-weight: bold;
}

input, button {
    height : 50px;
    width : 100%;
}

.erreur {
    color : red;
}

.ok {
    color: black;
}

