body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4f4;
    margin: 0;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

form {
    background-color: #f4f4f4;
    padding: 30px 40px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 400px;
}

.formulaire {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
    color: #333;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #eee;
    border: 1px solid #bbb;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    margin-top: 10px;
    transition: background-color 0.2s;
}

button:hover {
    background-color: #ddd;
}

p {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}

#co {
    color: purple;
    text-decoration: none;
}

#co:hover {
    text-decoration: underline;
}