.email-container {
    background: none;
    padding: 0px;
    border-radius: 12px;
    color: #000;
    max-width: 540px; /* ⬅️ Plus large qu'avant (420px) */
    font-family: Arial, sans-serif;
  }
  
  .email-container h3 {
    margin: 0;
    font-size: 24px; /* ⬆️ Titre un peu plus grand */
    font-weight: 800;
    color: #000;
  }
  
  .email-container p {
    margin: 5px 0 20px;
    font-size: 16px; /* ⬆️ Texte plus lisible */
    color: #ff6d00;
  }
  
  .form-group {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    height: 60px; /* ⬆️ Définit une hauteur plus grande */
  }
  
  .email-input {
    flex: 1;
    padding: 18px 20px; /* ⬆️ Plus de hauteur intérieure */
    font-size: 18px; /* ⬆️ Texte plus grand */
    border: none;
    outline: none;
    border-radius: 10px 0 0 10px;
    color: #000;
  }
  
  .btn {
    background-color: #ff6d00;
    border: none;
    padding: 0 26px; /* ⬅️ Ajusté pour rester harmonieux */
    height: 100%; /* ⬆️ Prend toute la hauteur de la form-group */
    color: white;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 0 10px 10px 0;
    transition: background-color 0.3s ease;
  }
  
  .btn:hover {
    background-color: #e65f00;
  }
  
  .note {
    margin-top: 25px;
    font-size: 13px;
    color: #666;
  }
  