/*
 * Développement : So Web - JC Lepoutre
 * Date : Juin 2026
 * Client : Colette s'apprête
 * Module : Formulaire de rétractation - Conformité loi du 19 juin 2026
 */
/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f5f5f5;
  padding: 20px;
  line-height: 1.6;
  color: #333;
}

/* CONTENEUR PRINCIPAL */
.container {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* EN-TÊTE */
header {
  text-align: center;
  border-bottom: 2px solid #eee;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.logo {
  max-width: 200px;
  height: auto;
  margin-bottom: 15px;
}
header h1 {
  font-size: 24px;
  color: #222;
}

/* INTRO */
.intro {
  background: #f9f9f9;
  padding: 15px;
  border-left: 4px solid #c00;
  margin-bottom: 25px;
  font-size: 14px;
}

/* FORMULAIRE */
fieldset {
  border: 1px solid #ddd;
  padding: 15px 20px 20px;
  margin-bottom: 20px;
  border-radius: 4px;
}
legend {
  font-weight: bold;
  padding: 0 10px;
  color: #222;
}
label {
  display: block;
  margin-bottom: 12px;
  font-size: 14px;
}
input[type="text"],
input[type="email"],
input[type="date"],
textarea {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  margin-top: 3px;
}
textarea {
  min-height: 60px;
  resize: vertical;
}
.mention {
  font-size: 13px;
  color: #777;
  font-style: italic;
}

/* BOUTON */
button[type="submit"] {
  background: #c00;
  color: #fff;
  border: none;
  padding: 12px 30px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s;
}
button[type="submit"]:hover {
  background: #990000;
}

/* PAGE CONFIRMATION */
.confirmation {
  text-align: center;
  padding: 20px 0;
}
.confirmation p {
  margin-bottom: 15px;
}
.btn-retour {
  display: inline-block;
  background: #333;
  color: #fff;
  padding: 10px 25px;
  border-radius: 4px;
  text-decoration: none;
  margin-top: 10px;
}
.btn-retour:hover {
  background: #555;
}

/* INFOS RETOUR */
.info-retour {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  font-size: 14px;
  color: #555;
}
.info-retour a {
  color: #c00;
  text-decoration: none;
}
.info-retour a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .container {
    padding: 15px;
  }
  header h1 {
    font-size: 20px;
  }
  button[type="submit"] {
    font-size: 16px;
    padding: 10px;
  }
}
