#page-register {
    border: solid 2px black;
    width: 750px;
  
    position: relative; /* ou static si pas nécessaire */
    margin: 0px auto;
    margin-top: 30px; /* fixe la hauteur, comme un "top" stable */
  }

.password-container {
    position: relative;
}

.password-toggle {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
}


.confirmpassword-container {
    position: relative;
}

.confirmpassword-toggle {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
}