body {
    font-family: 'Nunito', sans-serif;
}
input[type="text"],
input[type="password"],
input[type="email"]{
    border: 1px solid rgb(52, 52, 133);
    border-radius: 4px;
    width: 100%;
    height: 40px;
    padding: 5px;
    outline: none !important;
}
input[type="text"]:hover,
input[type="password"]:hover{
    border: 1px solid rgb(52, 52, 133);
}
input:focus, textarea:focus, select:focus {
    border: 1px solid rgb(52, 52, 133); 
  }
::placeholder {
    color: rgba(31, 29, 29, 0.459) !important;
    font-size: 15px;
  }

/* icone oeil pour voir le mot de passe */
.password-field {
    position: relative;
    display: flex;
    align-items: center;
  }

  .password-field input {
    /* Pour donner de l'espace pour l'icône */
    padding-right: 30px; 
  }

  .password-field .toggle-password {
    position: absolute;
     /* Positionner l'icône sur le côté droit */
    right: 10px;
    cursor: pointer;
  }