body {
    font-family: Arial, sans-serif;
    background: #fffff;
    text-align:center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

.containerInscription {
    margin-top:60px;
    background: transparent ;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    width: calc(100% - 40px);
    text-align: center;
}



.email-container {
    position: relative;
    display: flex;
    align-items: center;
}

.email-container input {
    width: 100%;
    padding-right: 35px;
}


.password-container {
    position: relative;
    display: flex;
    align-items: center;
}

.password-container input {
    width: 100%;
    padding-right: 35px; /* Espace pour l'icône */
}

.toggle-password {
    position: absolute;
    right: 10px;
    cursor: pointer;
    font-size: 18px;
}



h2 {
    color: #333;
}

.input-group {
    margin-bottom: 15px;
    text-align: left;
    
}

label {
    font-size: 14px;
    color: #555;
}

input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    margin-top: 5px;
}

button {
    background: #007BFF;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
}

button:hover {
    background: #0056b3;
}

#message {
    margin-top: 10px;
    font-size: 14px;
}

.login-link {
    margin-top: 10px;
    font-size: 14px;
}

.login-link a {
    color: #007BFF;
    text-decoration: none;
}

.login-link a:hover {
    text-decoration: underline;
}



#touslesdetails {
  margin: 10px auto;     /* centre horizontalement */
  padding: 3px;
  border: 1px solid #fffff;
  border-radius: 12px;
  background: #fffff;
  max-width: 500px;      /* largeur max sur PC */
  width: 100%;           /* occupe toute la largeur sur mobile */
  box-sizing: border-box;/* pour inclure les bordures dans la largeur */
}



