body {
    background-color: #1D0F26;
    color: #CBC4BD;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh; /* Centre verticalement sur toute la hauteur de l'écran */
    margin: 0;
    font-family: Arial, sans-serif;
    text-align: center; /* Centre le texte des éléments */
}

input, button, select {
    width: 50%;
    margin-bottom: 10px;
    padding: 10px;
    font-size: 16px;
    text-align: center;
    border: none;
    border-radius: 5px;
    outline: none;
    background-color: #CBC4BD;
    color: #305C5F;
}

button {
    background-color: #CBC4BD;
    color: #305C5F;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background-color: #C2C0A7;
    color: #B7652C ;
}

#feedbackMessage {
    margin-top: 10px;
    font-size: 1.2em;
}

.success {
    color: green;
}

.error {
    color: red;
}

#footer{
    background-color: #CBC4BD;
    color: #305C5F;
    display: block;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
    font-family: fantasy;
}