  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
            
        }
        .body{
          background-color: #f5f5f5;
        }
        .image-container {
            position: relative;
            margin-bottom: 40px;
             }

/* FORMULAIRE */

        .form-container{
          display: flex;
          justify-content: center;
        }
        .contact-form {
          width: 75%;
          max-width: 650px;
          background-color: white;
          border: solid;
          border-color: #FDC8B6;
          padding: 2rem;
          border-radius: 12px;
          box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
          padding: 3rem 4rem;
          transform: translate(0%, -20%);
            
        }
        .container{
          display: flex;
          justify-content: center;
        }

        .contact-form label {
          display: block;
          font-weight: 600;
          color: #000000;
          margin-top: 1.5rem;
        }

        .contact-form input,
        .contact-form textarea {
          width: 100%;
          margin-top: 0.5rem;
          padding: 1rem;
          border: 1px solid  #2d5f3f;
          border-radius: 8px;
          font-size: 1rem;
          color: #000000;
          transition: border-color 0.3s, box-shadow 0.3s;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
          border-color: #2d5f3f;
          box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
          outline: none;
        }

        .submit-btn {
          display: flex;
          justify-content: center;
          margin-left: 10rem;
          margin-top: 3rem;
          width: 40%;
          padding: 0.7rem;
          background-color: #2d5f3f;
          color: white;
          border: none;
          border-radius: 10px;
          font-size: 1.5rem;
          cursor: pointer;
          transition: background-color 0.3s;
}

        .submit-btn:hover {
            background-color: #6ec585;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(45, 95, 63, 0.3);
        }

/* LINKS */

        .links-container a {
            color: #2d5f3f;
            text-decoration: none;
            transition: color 0.3s;
            display: flex;
            justify-content: center;
            margin:20px auto;
            padding-top: 20px;
        }

        .links-container a:hover {
            color: #6ec585;
            text-decoration: underline;
        }

 /* PASSWORD */

        .password-container {
            position: relative; 
}

        .toggle-password {
            position: absolute;
            right: 20px;
            margin-top: 30px;
            transform: translateY(-50%);
            background: none;
            border: none;
            cursor: pointer;
            color: #666;
            font-size: 18px;
            padding: 5px;
            transition: color 0.3s;
        }
        .toggle-password:hover {
            color: #6ec585;
        }

/*AVIS*/
        .prevention {
            text-align: center;
            margin-top: 20px;
        }

        .note-container {
            margin-top: 20px;
        }

        .stars-container {
            display: flex;
            flex-direction: row;
            gap: 5px;
            margin: 10px 0;
        }

        .star {
            font-size: 2.5rem;
            color: #ccc;
            cursor: pointer;
            transition: color 0.2s;
        }

/* MESSAGE SUCCES */

        .success {
            background-color: #d4edda;
            color: #155724;
            padding: 15px 25px;
            margin: 20px auto;
            border: 1px solid #c3e6cb;
            border-radius: 5px;
            font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
            text-align: center;
            position: fixed;
            top: 100px; 
            left: 50%;
            transform: translateX(-50%);
            z-index: 9999;
            max-width: 600px;
            width: 90%;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
/* OVERLAY */

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.45);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.35s ease;
            z-index: 900;
        }
        .overlay.visible {
            opacity: 1;
            pointer-events: all;
        }


        @media (max-width: 480px) {

          .submit-btn {
          width: 100%;
           margin-left: 0rem;
          }

          h1{
            font-size: 16px;

          }
         .image-container {
                width: 100%;
    
          }
  
          .image-container img {
                width: 100%;
                max-width: 100%;
                height: auto; 
            }
          .contact-form{
            margin-top: 80px;
          }}

     



  
 