<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <title>fichier Css</title>
</head>
<body>
/* &mdash;&mdash;&mdash; Structure g&eacute;n&eacute;rale &mdash;&mdash;&mdash; */body {
background-color: #fefefe;
font-family: 'Segoe UI', Arial, sans-serif;
color: #2c0033;
line-height: 1.6;
padding: 40px 20px;
}
/* &mdash;&mdash;&mdash; Conteneur du formulaire &mdash;&mdash;&mdash; */
form {
max-width: 800px;
margin: 0 auto;
padding: 30px;
background-color: #ffffff;
border: 1px solid #ddd;
border-radius: 6px;
box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
/* &mdash;&mdash;&mdash; Titres &mdash;&mdash;&mdash; */
h1 {
color: #b30000;
font-size: 1.8em;
text-align: center;
margin-bottom: 20px;
}
/* &mdash;&mdash;&mdash; &Eacute;tiquettes et champs &mdash;&mdash;&mdash; */
label {
font-weight: bold;
display: block;
margin-top: 1em;
color: #333;
}
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
width: 100%;
padding: 10px;
border: 1px solid #ccc;
margin-top: 6px;
border-radius: 4px;
transition: border-color 0.3s;
}
input:focus,
textarea:focus {
border-color: #993399;
outline: none;
}
/* &mdash;&mdash;&mdash; Cases &agrave; cocher &mdash;&mdash;&mdash; */
.checkboxes {
margin-top: 1em;
}
.checkboxes label {
font-weight: normal;
}
/* &mdash;&mdash;&mdash; Boutons &mdash;&mdash;&mdash; */
.actions {
text-align: center;
margin-top: 2em;
}
button {
background-color: #993399;
color: #fff;
border: none;
padding: 12px 30px;
font-size: 1em;
border-radius: 4px;
cursor: pointer;
margin: 0 10px;
transition: background-color 0.3s;
}
button:hover {
background-color: #7a277a;
}
</body>
</html>
