body {
  height: 100vh; /* prend toute la hauteur de la fenêtre */
  display: flex;
  justify-content: center; /* centre horizontalement */
  align-items: center;     /* centre verticalement */
  background-image: url('/static/best1.png'); /* optionnel, pour un léger fond */
  
  font-family: Arial, sans-serif;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
     padding: 30px;
  border: 2px solid #1e1d1d;      /* encadrement */
  border-radius: 10px;         /* coins arrondis */
  background-color: rgb(5, 60, 29);     /* fond blanc du formulaire */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* ombre légère */
  gap: 10px;      
}

.container label {
  font-weight: bold;
}

.container input {
  width: 30ch;
  padding: 8px;
  border: 1px solid #0e0a0a;
  border-radius: 5px;
}

.checkbox-one {
    margin-top: 30px; /* espace au-dessus du bloc */
  display: flex;
  flex-direction: column;
  align-items: center; /* aligne la checkbox avec le texte */
  gap: 10px;
  
}

.checkbox-one label {
    font-family: helvetica;
}

.sender {
  margin-top: 30px;
  background-color: #1e1d1d;
}

.sender:hover {
  background: #380505;
  transform: translateY(-1px);
}

.mentions {
  margin-top: 15px;
  font-size: 13px;
  color: #666;
  text-align: center;
}

.mentions .site-name {
  font-weight: bold;
  color: #333;
}

.mentions a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s;
}

.mentions a:hover {
  color: #3a0b0b;
  text-decoration: underline;
}

.already {
  margin-bottom: 10px;
  display: inline-block;
  text-align: center;
  color: #0d0e10;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
}

footer {
  position: fixed; /* fixe le footer par rapport à la fenêtre */
  bottom: 0;       /* colle le footer au bas de la page */
  left: 0;         /* aligne le footer à gauche */
  width: 100%;     /* optionnel : pour qu'il prenne toute la largeur */
  text-align: left; /* s’assure que le texte reste à gauche */
  padding: 10px;   /* un peu d’espace autour du texte */
  font-size: 0.9em; /* un peu plus discret */
  color: #666;
}
