body
{
    background-color:black;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.8) 100%),
            url("fond.jpg");
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    
}

div.div
{
    background-color: white;
    border-radius:20px;
    width:100%;
    text-align: center;
    display:flex;
    justify-content: center;
}
div p
{
    text-align: center;
    font-family: Helvetica, sans-serif;
}
a{
    color:white;
}
label
{
    font-family: Arial, sans-serif;
    font-weight: bold;
}
img
{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 25%;
}
.sousdiv {
    /* Styles pour la division "sousdiv" */
    text-align: center; /* Centre le texte horizontalement */
  }
/* Style de base pour le formulaire */
.form_inscription {
    width: 30%;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f5f5f5;
  }
  
  /* Style pour les labels */
  label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
  }
  
  /* Style pour les champs de saisie */
  input[type="text"],
  input[type="password"] {
    width: 90%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
  }
  
  /* Style pour le bouton d'inscription */
  input[type="submit"] {
    background-color: #007BFF;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
  }
  
  /* Style pour le bouton d'inscription au survol */
  input[type="submit"]:hover {
    background-color: #0056b3;
  }
  