* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.5;
    color: #333;
  }
  
  .page-inscription {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  /* En-tête */
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
  }
  
  .logo {
    width: 200px;
    
  }
  
  h1 {
    font-size: 40px;
    color: #4B88B7;
    margin-bottom: 30px;
    font-weight: bold;
    font-style: italic;
  }
  
  /* Contenu principal */
  main {
    flex-grow: 1;
    padding: 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
  }
  
  .bloc-inscription {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
  }
  
  .image-campus {
    height: 350px;
    overflow: hidden;
    border-radius: 0.5rem;
  }
  
  .image-campus img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Formulaire */
  .formulaire {
    display: flex;
    flex-direction: column;
  }
  
  .grille {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  
  /* Tous les champs spécifiques */
  .prenom,
  .nom,
  .role,
  .identifiant,
  .email,
  .mot-de-passe,
  .date-naissance,
  .confirmation {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }
  
  label {
    color: #666;
    font-size: 0.875rem;
  }
  
  input {
    border: none;
    border-bottom: 1px solid #ddd;
    padding: 0.5rem 0;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
  }
  
  input:focus {
    border-color: #1a3f8e;
  }
  
  .date {
    position: relative;
  }
  
  .bouton-calendrier {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #1a3f8e;
    cursor: pointer;
    padding: 0.25rem;
  }
  
  /* Boutons et actions */
  .actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
  }
  
  .lien-connexion {
    color: #4B88B7;
    text-decoration: none;
    font-size: 0.875rem;
  }
  
  .lien-connexion:hover {
    text-decoration: underline;
  }
  
  .bouton-creer {
    background-color: #4B88B7;
    color: white;
    border: none;
    padding: 0.5rem 2rem;
    border-radius: 9999px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .bouton-creer:hover {
    background-color: #15327a;
  }
  

footer {
    margin-top: auto;
    background-color: white;
    padding: 40px;
    font-size: 0.9em;
    color: #333;
}

footer h6 {
    font-weight: bold;
    font-size: 1em;
}

footer .row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

footer p, footer a {
    color: #333;
    margin: 0;
    padding: 2px 0;
    font-size: 0.9em;
}

footer a {
    text-decoration: none;
}

footer img {
    max-height: 60px;
}

footer .bi {
    font-size: 1.2em;
    margin-right: 10px;
}
