/* style.css */

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: white;
    color: black;
    line-height: 1.6;
    font-size: 1rem;
  }
  
  header {
    background: #fff;
    padding: 1rem;
    border-bottom: 1px solid #ddd;
  }
  
  nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  nav li {
    margin: 0 1rem;
  }
  
  nav a {
    text-decoration: none;
    color: black;
    font-weight: bold;
  }
  
  .intro-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
  }
  
  .identity-photo-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 300px;
  }
  
  .identity-photo {
    text-align: center;
  }

  .identity-photo img {
    max-width: 70%;
    height: auto;
  }
  
  .inscription-form {
    width: 100%;
    margin-top: 1.5rem;
  }
  
  .livre-photo img {
    padding-top: 0.2rem;
    max-width: 70%;
    height: auto;
  }

  .vers-livre {
    margin-top: 1rem;
    text-align: center;
  }
  
  .vers-livre a {
    text-decoration: none;
    font-weight: bold;
    color: black;
    border-bottom: 1px solid black;
  }
  
  .texte {
    flex: 1 1 400px;
    max-width: 600px;
  }
  
  .inscription-form {
    border: 1px solid #ccc;
  }
  .inscription-form > div {
    padding: 1rem;
  }
  
  .inscription-form input {
    display: inline;
    padding: 0.5rem;
    margin-top: 0.2rem;
    box-sizing: border-box;
    border: 1px solid #aaa;
  }
  
  .inscription-form button {
    display: inline;
    margin-top:0.5rem;
    background: rgb(0, 255, 149);
    color: rgb(0, 0, 0);
    padding: 0.5rem 1rem;
    border: none;
    cursor: pointer;
  }
  
  .titreform {
    font-size: 1.2rem;
    margin: 0 0 0.5rem 0;
    color:rgb(0, 0, 0);
    font-weight: bold;
  }

  .note {
    font-size: 0.7rem;
    color: #444;
    margin-top: 0.5rem;
  }
  
  .vers-livre {
    text-align: center;
    margin-top: 2rem;
  }
  
  .vers-livre a {
    text-decoration: none;
    font-weight: bold;
    color: black;
    border-bottom: 1px solid black;
  }
  
  section {
    padding: 2rem;
  }
  
  footer {
    text-align: center;
    padding: 1rem;
    border-top: 1px solid #ddd;
    margin-top: 2rem;
    font-size: 0.8rem;
  }
  

  
  /* Responsive */
  @media (max-width: 700px) {
    .intro-wrapper {
      flex-direction: column;
      align-items: center;
    }
  
    .texte {
      text-align: left;
      padding: 0 1rem;
    }
  }
  
  @media (min-width: 700px) {
    .identity-photo {
        text-align: right;
    }
  }