 /* Importation d'une police douce et moderne */
    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;800&display=swap');

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    body {
      height: 100vh;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      /* background: radial-gradient(circle at top right, #0076BE 10%, #00C27B 60%, #FF7B00 120%); */
      overflow: hidden;
      position: relative;
    }

    /* Cercles animés d’arrière-plan */
    .circle {
      position: absolute;
      border-radius: 50%;
      opacity: 0.3;
      animation: pulse 6s infinite ease-in-out;
    }

    .circle.orange {
      width: 250px;
      height: 250px;
      background: #FF7B00;
      top: 10%;
      left: 15%;
      animation-delay: 0s;
    }

    .circle.blue {
      width: 350px;
      height: 350px;
      background: #0076BE;
      bottom: 15%;
      right: 20%;
      animation-delay: 1.5s;
    }

    .circle.green {
      width: 200px;
      height: 200px;
      background: #00C27B;
      bottom: 25%;
      left: 30%;
      animation-delay: 3s;
    }

    @keyframes pulse {
      0%, 100% {
        transform: scale(1);
        opacity: 0.3;
      }
      50% {
        transform: scale(1.5);
        opacity: 0.6;
      }
    }

/* ======= Page Connexion ======= */
.login-page {
    z-index: 5555;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  font-family: 'Poppins', sans-serif;
}

.login-container {
  background: #00e1ff;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  width: 100%;
  max-width: 400px;
  text-align: center;
  margin: 10px 10px 10px 10px;
}

.login-logo img {
  max-width: 120px;
  margin-bottom: 30px;
}

.login-form .input-group {
  position: relative;
  margin-bottom: 20px;
}

.login-form .input-group i {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: #0076BE;
}

.login-form input {
  width: 100%;
  padding: 12px 40px 12px 40px;
  border: 1px solid #ccc;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.login-form input:focus {
  border-color: #FF7B00;
  box-shadow: 0 0 8px rgba(255,123,0,0.2);
  outline: none;
}

.toggle-password {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  cursor: pointer;
  color: #555;
}

.login-btn {
  width: 100%;
  padding: 12px;
  background: #FF7B00;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.login-btn:hover {
  background: #0076BE;
}

.login-links {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}

.login-links a {
  color: #0076BE;
  text-decoration: none;
  transition: color 0.3s;
}

.login-links a:hover {
  color: #FF7B00;
}

/* ======= Responsive ======= */
@media (max-width: 480px) {
  .login-container {
    padding: 30px 20px;
  }
}
.type-compte {
    margin-bottom: 20px;
}

.type-compte .form-check {
    margin-bottom: 10px;
}

.type-compte input[type="radio"] {
    margin-right: 10px;
}

.type-compte label {
    color: #333;
    cursor: pointer;
}

.checkbox-container {
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center; /* Aligne verticalement */
  gap: 8px; /* Espace entre la case et le texte */
}

/* Optionnel : styliser la checkbox */
.checkbox-container input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #0076BE; /* change la couleur selon ton thème */
}

/* Optionnel : style du texte */
.checkbox-container label {
  font-size: 16px;
  color: #222;
  cursor: pointer;
}

/* Conteneur principal : centré dans le formulaire */
.type-compte-container {
  display: flex;
  flex-direction: column;
  align-items: center; /* aligne les radios verticalement */
  gap: 10px;
  margin: 15px 0;
  
  /* ces deux lignes centrent le bloc dans le formulaire */
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

/* Chaque option : input + label sur la même ligne */
.radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Style des radios */
.radio-option input[type="radio"] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #0076BE;
  cursor: pointer;
}

/* Style du texte */
.radio-option label {
  cursor: pointer;
  font-size: 15px;
  color: #222;
  line-height: 1;
}


.select-group select {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid #0076BE; /* bleu */
    border-radius: 8px;
    background-color: #fff;
    font-size: 16px;
    color: #333;
    appearance: none; /* supprime le style par défaut */
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-group select:focus {
    border-color: #FF7B00; /* orange au focus */
    outline: none;
    box-shadow: 0 0 5px rgba(255, 123, 0, 0.5);
}

/* Pour ajouter une flèche custom */
.select-group {
    position: relative;
    display: inline-block;
    width: 100%;
}

.select-group::after {
    content: "▼";
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    pointer-events: none;
    color: #0076BE;
    font-size: 12px;
}
