
    * { box-sizing: border-box; }
    body {
      margin: 0;
      padding: 0;
      font-family: Arial, sans-serif;
      min-height: 100vh;
      background: url('https://ik.imagekit.io/kelpay/Fond%20Formulaire%20/fond.jpg?updatedAt=1750067659882') no-repeat center center fixed;
      background-size: cover;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
    }
    .blur-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: Auto;
      backdrop-filter: blur(10px);
      background: rgba(255, 255, 255, 0.2);
      z-index: 0;
    }
    .form-container {
      position: relative;
      z-index: 1;
      width: 90%;
      max-width: 500px;
      background: rgba(255, 255, 255, 0.95);
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 0 15px rgba(0,0,0,0.2);
    }
    .logo-container {
      text-align: center;
      margin-bottom: 20px;
    }
    .logo {
      width: 80px;
      height: auto;
    }
    h2 {
      text-align: center;
      margin-bottom: 10px;
    }
    #loading-bar {
      display: none;
      height: 10px;/*4px  */
      width: 100%;
      background-color: #ddd;
      border-radius: 4px;
      overflow: hidden;
      margin-bottom: 20px;
    }
    #progress {
      height: 100%;
      width: 0%;
      background-color: #28a745;
      transition: width 0.4s;
    }
    label {
      display: block;
      margin-top: 15px;
      font-weight: bold;
    }
    input[type="number"],
    input[type="text"],
    input[type="password"],
    select,
    textarea {
      width: 100%;
      padding: 10px;
      margin-top: 5px;
      border: 1px solid #ccc;
      border-radius: 6px;
    }
    .radio-group {
      margin-top: 10px;
    }
    .radio-group label {
      font-weight: normal;
      margin-right: 20px;
    }
    #phone-field {
      display: none;
    }
    button {
      margin-top: 20px;
      padding: 12px;
      width: 100%;
      background-color: #28a745;
      color: white;
      border: none;
      border-radius: 6px;
      font-size: 16px;
      cursor: pointer;
    }
    button:hover {
      background-color: #218838;
    }
    .payment-logos {
      text-align: center;
      margin-top: 25px;
    }
    .payment-logos img {
      height: 30px;
      margin: 0 10px;
    }

    .clignote {
        animation: clignoter 1s infinite;
        font-size: 12px;
    }

    @keyframes clignoter {
        0%, 100% {
            opacity: 1;
        }
        50% {
            opacity: 0;
        }
    }
    .payment-logos img {
        width: 300px; /* Ajustez la largeur */
        height: auto; /* Garde les proportions de l'image */
        max-width: 100%; /* Assure que l'image ne dépasse pas la taille de son conteneur */
    }
    .footer {
       font-size: 13px;
    }
    .result {
        margin-top: 20px; padding: 15px; border-radius: 8px;
    }
    .result.success{
        background: #e9ffe9;
        border-left: 5px solid #28a745;
    }
    .result.error{
        background: #ffe9e9;
        border-left: 5px solid #dc3545;
    }