body {
    margin: 0;
    padding: 0;
    background-color: rgb(0, 0, 0);
    background-image: url("./asset/bridge-g98e672719_1280.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }
  
  /*header */
  
   header {
    width: 100%; 
  
    display: flex;
    flex-direction: row;
    justify-content: space-around;
  }
  
  .container_img {
    padding-top: 1%;
  }
  
  .container_img img {
    width: 32px;
    height: 32px;
  }
  
  .nav {
    width: 50%;
  }
  
  .nav ul {
    display: flex;
    flex-direction: row;
  
    justify-content: space-around;
  }
  
  .nav ul li {
    list-style: none;
    margin-left: 2%;
    font-family: "Dosis";
  }
  
  .nav ul li a {
    text-decoration: none;
    color: white;
  }
  .nav ul li a:hover {
    color: yellow;
  } 
  
  /* Container_main */
   
  .container {
    height: 50vh;
  
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .container h2 {
    color: white;
    font-family: "Dosis";
    font-weight: 500;
    font-size: 3rem;
    padding-top: 5%;
  }
  
  small i {
    color: white;
  }
  
  /* Inscription */
  
  .succes {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgb(255, 5, 5);
  }
  
  .container-sign {
    display: flex;
    margin-top: 5%;
    justify-content: center;
  
    color: rgb(255, 255, 255);
    font-family: "Dosis";
    font-size: large;
    letter-spacing: 3px;
  
    /* border: 1px solid black; */
  }
  .container-log {
    display: flex;
    margin-top: 5%;
    justify-content: center;
  
    color: rgb(255, 255, 255);
    font-family: "Dosis";
    font-size: large;
    letter-spacing: 3px;
  }
  
  span p{
    color: rgb(255, 0, 0);
    background-color: antiquewhite;
  }

  form {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* border: 1px solid black; */
    padding-bottom: 3%;
  }
  
  input[type="text"] {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
    background-color: wheat;
    border: wheat;
  }
  input[type="password"] {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
    background-color: wheat;
    border: wheat;
  }
  
  input[type="submit"] {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
    background-color: wheat;
    font-family: "Dosis";
    border: rgb(0, 0, 0);
  }
  input[type="submit"]:hover {
    cursor: pointer;
  }
  
  /* Page admin affichage bdd */
  .container_admin{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    font-family: 'Dosis';
  }
  .container_admin h1{
    color: white;
    font-family: 'Dosis';
  }
  .container_admin a{
    padding-top: 2%;
    text-decoration: none;
    font-family: 'Dosis';
    color: rgb(255, 255, 255);
  }
  .container_admin a:hover {
    color: rgb(255, 255, 255);
  }
  
  table {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid black;
    background-color: rgb(151, 32, 32);
    font-family: 'Dosis';
  }
  thead{
    background-color: rgb(253, 183, 77);
    font-family: 'Dosis';
    width: 100%;
    display: flex;
    justify-content: center;
    border: 2px solid;
  
  }
  
    /* border: 2px solid black; */
  
  
    tbody{
    display: flex;
    flex-direction:column;
    align-items: center;
    /* color: rgb(255, 255, 255); */
    font-family: 'Dosis';
    text-decoration-color: antiquewhite;
   
    
  }
  
  
  /* Page utilisateur_profil */
  
  .container_session {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    font-family: 'Dosis';
  }
  .container_session h1{
    color: white;
    font-family: "Dosis";
  }
  .container_session a{
    padding-top: 2%;
    text-decoration: none;
    font-family: "Dosis";
    color: rgb(245, 211, 179);
  }
  .container_session a:hover {
    color: yellow;
  }
  
  /* Page utilisateur confirmation modification de profil */
  
  .message-succes {
    display: flex;
    flex-direction: row;
    justify-content: center;
    color: rgb(255, 0, 0);
    font-family: "Dosis";
  }
  

  label {
    color: aliceblue
  }


  /* Footer */
  
  footer {
    display: flex;
    flex-direction: column-reverse;
    color: rgb(255, 255, 255);
    font-family: "Dosis";
    align-items: center;
    
    
  }
  
  footer img {
    width: 220px;
    height: 220px;
    padding-top: 0.5%;
  }