<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* GÃ©nÃ©ral */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 0;
}

h1 {
    text-align: center;
    color: #333;
    margin-top: 50px;
}

/* Conteneur du formulaire */
form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Ã‰tiquettes */
label {
    font-size: 16px;
    color: #333;
    display: block;
    margin-bottom: 8px;
}

/* Champs de saisie */
input[type="text"],
input[type="email"],
input[type="file"] {
    width: 95%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="file"]:focus {
    border-color: #007BFF;
    outline: none;
}

/* Bouton d'envoi */
input[type="submit"] {
    background-color: #007BFF;
    color: white;
    font-size: 16px;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}

/* Espacement gÃ©nÃ©ral */
br {
    display: block;
    margin: 10px 0;
}
</pre></body></html>