.form_allauth {
    display: flex;
    flex-direction: row;
}
.account_left {
    display:none;
    flex:1;
    padding: 1rem;
    border-right: 0.5rem solid black;
}



.account_right {
    flex:3;  
    padding: 3rem;
}


.form_base .field {
    display: flex;
    flex-direction: row;
    gap: 20px; /* Espacement entre les éléments */
    align-items: center; /* Alignement vertical centré */
    outline: none; /* Supprime le contour par défaut */  
    border-radius: 2rem;
    margin-bottom: 1rem;
}

.field input {
    flex:1;
}


.radiorcheck {
    display: flex;  
    font-size: larger;
    flex-direction: row;
    align-items: baseline;  
    align-self: baseline;
    flex:4;
}


.mycheckbox {
    width: 20px;
    height: 2rem;
    accent-color: #3c9757;
    cursor: pointer;
    transition: transform 0.3s;  
    margin: 2rem;
}

.badge-email {
    margin-left: 1rem;
    padding: 1rem;
    border: 3px solid rgb(69, 146, 69);
    border-radius: 1rem;
}

.form_base button {
    align-items: center;
    text-align: center;
    display: block;
    margin: 0 auto;
    margin-top: 0px;
    margin-bottom: 0px;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: var(--cuvea-primary-t10);
    border: solid var(--cuvea-primary);
    border-radius: 1rem;
    color: var(--cuvea-primary);
    font-size:1.5rem;  
    border-width: 1px 1px 4px 1px;
  }

  .form_base button:hover {
    background-color: var(--cuvea-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

.footer_form_allauth > div {
    border-bottom: 1px solid var(--color-shade);
    padding: 1rem;
    font-size: small;
    background-color: #6D6085;
}

.lien-inline {
    align-items: center;
    text-align: center;
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: #0f397b;
    border: solid grey;
    border-radius: 1rem;
    color: white;
    font-size:1.2rem;  
    border-width: 1px 1px 4px 1px;
}

.lien {
    align-items: center;
    text-align: center;
    padding: 1rem;
    background-color: #0f397b;
    border: solid grey;
      border-top-width: medium;
      border-right-width: medium;
      border-bottom-width: medium;
      border-left-width: medium;
    color: white;
    font-size: 1.2rem;
    border-width: 1px 1px 1px 1px;
    flex: 1;
    min-width: 50%;
    height: 150px;
    display: flex;
    justify-content: center;
}

.lien:hover {
    background-color: #0a2a5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

@media (min-width: 768px) {
    .account_left {
        display:flex;
    }
    .footer_form_allauth > div {
        color:white;
    }
}

.session-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.session-card {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: box-shadow 0.2s;
    padding: 1rem;
}

.session-card:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.session-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    background-color: #f8f9fa;
    border-radius: 8px 8px 0 0;
}

.session-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    color: #333;
}

.current-badge {
    background-color: #1e40af;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size