body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #f5f7fb;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 50px auto;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

h1,h2,h3 {
    color: #0B1F8F;
}

label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
}

input, select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 12px;
    margin-top: 5px;
}

button, a {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

button {
    background: #7FBD00;
    color: white;
}

button:hover {
    background: #4575E0;
}

a {
    background: #0B1F8F;
    color: white;
}

a:hover {
    background: #4575E0;
}
.error {
    color: red;
    font-weight: bold;
}
.stars {
    display: inline-block;
    cursor: pointer;
    font-size: 1.5em;
    color: #FFCC00; /* couleur des étoiles */
}
.star {
    margin-right: 2px;
}
  .ctn-logo {
      font-size: 20px;
      font-weight: bold;
      @media screen and (max-width: 500px) {
        order: 3;
        margin: auto;
        align-self: center;
      }
    }

    .ctn-logo1 {
      @media screen and (max-width: 500px) {
        order: 1;
      }
    }

    .ctn-logo2 {
      @media screen and (max-width: 500px) {
        order: 2;
      }
      a {
        display: flex;
        align-items: center;
        text-decoration: none;
        font-size: 25px;
        color: black;

        @media screen and (max-width: 500px) {
          display: flex;
          align-items: center;
          text-decoration: none;
          font-size: 15px;
          color: black;
          padding-right: 5px;
        }
      }
    }
  }
}

.logoAc {
  padding: 15px 0; /* Espacement autour du logo */
  width: 400px;

  @media screen and (max-width: 800px) {
    padding: 15px 0 15px 5px; /* Espacement autour du logo */
    width: 250px;
  }
}

footer {
  background-color: #ffffff; /* Couleur de fond de la barre de navigation */
  text-align: center; /* Alignement du contenu au centre */
  box-shadow: 0 -4px 4px rgba(0, 0, 0, 0.1); /* Ombre sur le dessus */
  width: 100%;
  min-height: 50px;
  position: fixed;
  bottom: 0;
  left: 0;

  .footer-box {
    display: flex;
    margin: 15px;
    justify-content: space-evenly;
    align-content: center;
    flex-direction: row;
    a {
      text-decoration: none;
      color: black;
    }

    img {
      width: 50px;
      height: auto;
      border-radius: 35%;
    }
  }
}