 



    * {
      box-sizing: border-box;
    }

    body { 
      font-family: 'Poppins', sans-serif;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
      margin: 0;
      padding: 20px;
      animation: fadeIn 1s ease-in;
      /* background: #1434c8 url('src/lueur1.svg') no-repeat center center; */ 
    background-color: #1434c8;
background-image: url('src/lueur1.svg'), url('src/roue.svg');
background-repeat: no-repeat, no-repeat;
background-position: center center, center center;
background-size: contain, contain; /* ou cover selon ton besoin */

  background-size: cover, cover;

    }

    h2 {
      color: #444;
      font-size: 24px;
      margin-bottom: 30px;
      text-align: center;
      animation: slideDown 1s ease-in;
    }

    form {
      /* background: white; */
      padding: 30px;
      border-radius: 15px;
      /* box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); */
      animation: scaleUp 0.8s ease-in-out;
      max-width: 100%;
      width: 360px;
    }

    .titreinput{
color:#fff;
font-size: 14px;
    margin-bottom: 6px;
text-transform:uppercase;
    }

    input[type="text"],input[type="email"],input[type="tel"] {
      padding: 15px;
      width: 100%;
        border: 1px solid #ddd;  
      border-radius: 8px;
      font-size: 16px;
      margin-bottom: 5px;
      transition: border 0.3s ease;
    }

    input[type="text"]:focus,input[type="email"]:focus,input[type="tel"]:focus {
      border-color: #4caf50;
      outline: none;
    }

    button {
      width: 100%;
      padding: 12px 25px; 
      border: none;
      color: white;
      font-size: 16px; 
      cursor: pointer;
      margin-top: 15px;
      transition: all 0.3s ease;
      
    background:#ff8003;
    color:#fff;
    border-radius: 10px;;

    }

    button:hover {
      transform: scale(1.05);
      background: linear-gradient(to right, #388e3c, #66bb6a);
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }

    @keyframes slideDown {
      from { transform: translateY(-20px); opacity: 0; }
      to   { transform: translateY(0); opacity: 1; }
    }

    @keyframes scaleUp {
      from { transform: scale(0.95); opacity: 0; }
      to   { transform: scale(1); opacity: 1; }
    }

    @media (max-width: 400px) {
      form {
        padding: 20px;
      }

      h2 {
        font-size: 20px;
      }

      button {
        font-size: 15px;
      }
    }


    .step {
      display: none;
    }
    .step.active {
      display: block;
    }
    
    .error {
      color: red;
      margin-bottom: 10px;
      display: none;
    }
    .error1 {
      color: red;
      text-align: center;
      margin-bottom: 10px; 
    }
