  * {
            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 */

        .container{
            display: flex;
            justify-content: center;
        }
        .form-container{
            display: flex;
            justify-content: center;
            padding-top: 80px;
        }


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

        .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  #000000;
          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;
        }
      
/* PASSWORD BTN */

        .toggle-password {
            position: absolute;
            right: 80px;
            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;
        }
       
        p{
          margin-top: 10px;
        }

        

/*CHECKBOX*/    

        .checkbox-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;   
        }

        .checkbox-container input {
            width: 20px;
            height: 20px;
            cursor: pointer;
            border: 2px solid #d1d1d1;
            border-radius: 4px;
            margin-top: 20px;
        }

        .checkbox-container label {
            font-size: 16px;
            color: #000000;
            cursor: pointer;
            user-select: none;
        }

        .checkbox-container label a {
            color: #000000;
            text-decoration: underline;
        }

/*INSCRIPTION BTN */

        .submit-btn {
          margin-left: 9rem;
          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-container{
          text-align: center;
          margin-top: 20px;
        }


/* MESSAGES ERROR+SUCCESS */
        
        .error {
        background-color: #f7cfcf;
        color: #d41b1b;
        padding: 15px;
        margin: 20px 0;
        border: 1px solid #da9b9b;
        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; 
        }
        
        .success {
        background-color: #d4edda;
        color: #155724;
        padding: 15px;
        margin: 20px 0;
        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; 
    }
         @media (max-width: 480px) {

          .submit-btn {
          width: 100%;
           margin-left: 0rem;
          }
          
          h1{
            font-size: 16px;
            text-align: center;
          }

          h2{
            font-size: 16px;
            text-align: center;

          }  
          .image-container {
                width: 100%;
    
          }
  
          .image-container img {
                width: 100%;
                max-width: 100%;
                height: auto; 
            }
          .form-container{
            padding-top: 150px;
          }}
  
