body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #fff8f8;
    color: #5a3f3f;
  }
  
  .logo {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 100;
    width: 120px;
    height: auto;
    cursor: pointer;
    filter: drop-shadow(0 0 3px rgba(0,0,0,0.2));
  }
  

  .connexion-section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 1rem;
    background: linear-gradient(to bottom, #fff8f8, #ffe9e9);
  }
  
  .connexion-container {
    background: #ffffffee;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(255, 105, 180, 0.2);
    width: 100%;
    max-width: 400px;
    text-align: center;
  }
  
  .connexion-container h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #FF69B4;
  }
  
  .form-group {
    text-align: left;
    margin-bottom: 1.2rem;
  }
  
  label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
  }
  
  input,
  select {
      padding: 10px;
      border-radius: 5px;
      border: 1px solid #ccc;
      width: 100%;
      box-sizing: border-box;
  }
  
  
  input:focus {
    outline: none;
    border-color: #FF69B4;
    box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.2);
  }
  
  button {
    width: 100%;
    padding: 12px;
    background-color: #FF69B4;
    border: none;
    color: white;
    font-weight: bold;
    border-radius: 12px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  button:hover {
    background-color: #e03897;
  }
  
  /* ----- Menu hamburger ----- */
  #menu-toggle {
    display: none;
  }
  
  .menu-icon {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .menu-icon span {
    display: block;
    height: 3px;
    background: #f1c4c4;
    border-radius: 3px;
    transition: 0.3s;
  }
  
  .menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 200px;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    transition: right 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
  }
  
  .menu ul li {
    margin: 20px 0;
  }
  
  .menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: color 0.3s;
  }
  
  .menu ul li a:hover {
    color: #e2c678;
  }
  
  #menu-toggle:checked ~ .menu {
    right: 0;
  }
  
  #menu-toggle:checked + .menu-icon span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  #menu-toggle:checked + .menu-icon span:nth-child(2) {
    opacity: 0;
  }
  
  #menu-toggle:checked + .menu-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
/* Pied de page */
footer {
    text-align: center;
    padding: 2.5rem 1rem;
    font-weight: 500;
    font-size: 1rem;
    color: #7a4a4a;
    background: #fcf9d1;
    letter-spacing: 0.05em;
    user-select: none;
  }
  
  .social-media {
    display: flex;
    gap: 15px;
  }
  
  .social-media img {
    width: 40px;
    height: 40px;
  }
  
  /* Responsive */
  @media (max-width: 500px) {
    .connexion-container {
      padding: 1.5rem;
    }
  }
  