/* Style pour le form de connexion */

.login-card {
    width: 400px;
    margin: 0 auto; 
    padding: 50px;
    background-color: #004f76;
    border-radius: 100px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.custom-login-form .connexion-btn {
    margin-block: 10px;
    width: 100%;
    padding: 10px;
    background-color: #0d6efe;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.custom-login-form .connexion-btn:hover {
    background-color: #ffbf00;
}

/* Style du bouton d'adhésion sur la page connexion */

.adhesion-btn{
    width: 100%;
    padding: 10px;
    background-color: #ffbf00;
    color: white !important;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display:block;
    margin-top: 10px;
    text-align: center;

}

.adhesion-btn:hover {
    background-color: #71bb64;
}


.inputLogin{
	margin-bottom: 20px;
}

/* Lien pour mot de passe oublié */
.custom-login-form #mot-de-passe-oublie {
    display: block;
    text-align: center;
    margin-top: 12px;
    font-size: 14px;
    color: #ffffff !important;
    text-decoration: none;
}

.custom-login-form .mot-de-passe-oublie:hover {
    text-decoration: underline;
}

.btn-adhesion{
    margin: auto;
	display: flex;
	gap: 5px;
    justify-content: center;
}
.btn-revenir-accueil{
  color:#ffffff;
}
.btn-revenir-accueil:hover{
  color:orange;
}
/* STYLE DU FORM ADHESION */
.form-option {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
  }
  
  .form-option input[type="checkbox"] {
    margin: 0;
  }
  
  .form-option label {
    margin: 0;
    line-height: 1.4;
  }
  
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
  margin-right: 10px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  background-color: #ccc;
  transition: .4s;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 34px;
}
.slider:before {
  position: absolute;
  content: "";
  height: 20px; width: 20px;
  left: 4px; bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}
input:checked + .slider {
  background-color: #2196F3;
}
input:checked + .slider:before {
  transform: translateX(24px);
}
.champ-adhesion {
  padding: 10px 0;
  margin: auto;
}
.confirmation-message {
    max-width: 700px;
    margin: 40px auto;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    line-height: 1.8;
}

.confirmation-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2em;
    font-weight: 500;
}

.confirmation-button {
    text-align: center;
    border-radius: 20px;
    background-color: #114388;
    padding: 1em;
    color: white;
    font-weight: bold;
    width: 15em;
    margin: auto;

}

.confirmation-conclusion {
    margin-top: 2em;
}

.bouton_principal_formulaires{
    color: white;
}
