a.info-link {
  margin-left: 5px;
  text-decoration: none;
  color: #007bff;
  font-weight: bold;
}

a.info-link:hover {
  text-decoration: underline;
}

.blockmargin {
     display: flex;
    flex-direction: column; /* souvent utile pour du centrage vertical */
    align-self: center;
  margin-block: 40px 40px; /* top 60px, bottom 30px */
  background-color: #050505e1;
  width: 35%;
  align-items: center;
  
}

.headprint {
    display: flex;
    flex-direction: column;
  text-align: center;
  font-family: 'Share Tech Mono', monospace;
  color: #ffffff;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 20px;
  background-color: #e4dfdf59;
  width:fit-content;
  margin: 0 auto;
  border-radius: 0px;
  border: solid ;
  color:#fff;
}

.headprint h2,
.headprint h3 {
  margin: 10px 0;
  text-shadow: 0 0 4px #ffffff50, 0 0 8px #ffffff30;
  font-weight: normal;
}

.headprint strong {
  color: #fff;
  font-weight: bold;
}


/* Police et alignement global */
form {
      display: flex;
  flex-direction: column; /* si flex est utilisé */
align-items: center;
  max-width: 600px;
  margin: 0 auto;
  font-family: 'Share Tech Mono', monospace;
  font-size: 1em;
  color: #ffffff;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);

  }



/* Titres de section */
form h2, form h3, form label {
  font-weight: normal;
  margin-top: 20px;
  margin-bottom: 5px;
  color: #fff;
  
}

/* Inputs & Textareas */
form input[type="text"],
form input[type="email"],
form textarea,
form select {
  width: 100%;
  padding: 10px;
  border: 1px solid #050505;
  border-radius: 6px;
  font-family: 'Share Tech Mono', monospace;
  background: fixed;
  color: #fff;
  box-shadow: 0 0 8px rgba(20, 20, 20, 0.671);
  background-color: #050505a2;


}

/* Checkboxes & Radios */
form input[type="checkbox"],
form input[type="radio"] {
  margin-right: 8px;
  transform: scale(1.2);
  color: #fff;

}

/* Liens (comme [i] intervention) */
form a {
  color: #40c8ff;
  text-decoration: none;
}
form a:hover {
  text-decoration: underline;
}

/* Select dropdown */
form select {
  background-color: rgba(255, 255, 255, 0.05);
}

/* Bouton de soumission */
form button[type="submit"] {
  margin-top: 30px;
  padding: 12px 24px;
  font-size: 1.1em;
  border: 1px solid #fff;
  background-color: black;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 0 10px rgba(255,255,255,0.3);
width: fit-content;
align-self: center;
 
}
form button[type="submit"]:hover {
    cursor: pointer;
    color:black;
  background-color: #25802a;
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.4);
}

select {
  background-color: #0f1e37;  /* fond sombre */
  color: #ffffff;             /* texte clair */
  border: 1px solid #ffffff50;
  padding: 8px;
  font-family: 'Share Tech Mono', monospace;
  border-radius: 4px;
}

select option {
  background-color: #0f1e37;
  color: #ffffff;
}

@media (max-width: 1024px) {
  .blockmargin {
    width: 60%;
  }
}


@media (max-width: 992px) {
  .blockmargin {
    width: 100%;
    border-radius: 0; 
    font-size: 0.7em;     /* plein écran sur mobile */
  }
}