/* Style global */
body { 
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(to right, #232526, #414345);
    margin: 0;
    color: #fff;
}

/* Conteneur principal */
.forgot-password-container {
    background: #ffffff;
    padding: 40px;
    width: 400px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
    color: #333;
}

/* Champs de formulaire */
input {
    display: block;
    width: 100%;
    margin: 15px 0;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

/* Bouton */
button {
    width: 100%;
    padding: 12px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease, transform 0.2s ease;
}

button:hover {
    background: #0056b3;
    transform: scale(1.05);
}

/* Message d'erreur et de succès */
.error {
    color: red;
    font-size: 14px;
    margin-bottom: 10px;
}

.success {
    color: green;
    font-size: 14px;
    margin-bottom: 10px;
}

.btn-retourpage {
    position: fixed;  /* Le bouton est fixé par rapport à la fenêtre */
    top: 20px;
    left: 20px;
    background: #007bff;
    color: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.15);
    text-decoration: none;    /* Pas de soulignement */
    font-weight: bold;
    display: flex;
    align-items: center;
    transition: background 0.3s ease-in-out;
  }
  .btn-retourpage:hover {
    background-color: #0056b3; /* Couleur au survol */
  }
    /* Création de la flèche avec une bordure */
    .fleche {
      border: solid white;
      border-width: 0 3px 3px 0;
      display: inline-block;
      padding: 8px;
      transform: rotate(135deg); /* Rotation pour obtenir une flèche pointant vers la gauche */
    }