
.gauche-droite-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: clamp(20px, 5vh, 80px);
}

.gauche-droite{
	display:flex;
	justify-content: space-between;
	width: 90%;
	align-items: stretch; /* Assure que .gauche et .droite ont la même hauteur */
	margin: clamp(10px, 2vh, 30px) auto;
    gap: clamp(20px, 2vw, 50px);
  }


  .gauche {
    flex: 1;
    display: flex;
    min-width: 320px;
    padding: clamp(20px, 2vw, 40px);
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0,0,0,0.3);
    background-color: #d6f5e9;
    height: auto;
    box-sizing: border-box;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.droite {
    flex-direction: column;
    justify-content: space-between;
    display: flex;
    padding: 0; /* plus de padding */
    background: none;
    box-shadow: none;
    border-radius: 0;
}

.gauche { flex: 1.2; }
.droite { flex: 1; }

#logo_raimed{
    width: 25%;
    margin: 0 auto clamp(10px, 1vh, 15px); /* centré horizontalement et espace dessous */
    display: block;
}



.connexion, .nouveau {
    padding: clamp(20px, 2vw, 30px);
    background-color: #d6f5e9;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
    align-items: center;
    text-align: center;
}

.connexion {
    flex-grow: 1;
    margin-bottom: clamp(15px, 2vh, 25px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nouveau {
    flex-grow: 0; /* reste une "boîte" compacte */
    margin-top: auto; /* pousse en bas */
}


#email, #pass{
    width: 100%;
    max-width: 320px;
    font-size: clamp(14px, 1.2vw, 16px);
    box-sizing: border-box;
    padding: 10px 12px;
    border-radius: 10px;
    margin-bottom: clamp(14px, 1.2vw, 16px);
    color: #1b4f4e; 
}

#email::placeholder,
#pass::placeholder {
    color: #1b4f4e; /* un vert foncé élégant */
    opacity: 0.8; /* pour un peu de transparence si tu veux un effet adouci */
    font-style: italic; /* optionnel : pour une touche de distinction */
}


/* Styles communs pour les éléments avec la classe .button */
.button {
    display: inline-block;
    padding: clamp(10px, 1.5vw, 14px);
    background-color: #388e7d;
    color: rgba(255, 255, 255, 0.90);
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    font-size: clamp(14px, 1.4vw, 16px);
    box-sizing: border-box;
    border: solid black 2px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
    font-family: Arial, sans-serif;
    width: 100%;
    max-width: 200px;
    transition: transform 0.2s ease-in-out;
}


.button:hover {
    background-color: #2d7163;
    transform: scale(1.02);
}


a.mdp-oublie {
    display: inline-block;
    color: #2c7a7b;
    font-size: clamp(15px, 1.4vw, 17px);
    text-decoration: underline;
    margin-bottom: clamp(14px, 1.2vw, 16px);
}

a.mdp-oublie:hover {
    color: #1b4f4e;
}