main{
    display: flex;
  justify-content: center;
  align-items: center;
}
form{
   
        display: flex;
        align-items: center;


    flex-direction: column;
    gap: 3rem;
}
form div{
    max-width:40rem ;
    width: 100%;
    display: flex;
    justify-content: center;
}
.profile_img{
    width: 15rem;
    height: 15rem;
   
}
.profile_img img{
    border-radius: 50%;
}
.profile_right{
    width: 100%;
}
.password{
    display: flex;
    align-items: center;
}
.password input{
    border-radius: 1rem 0 0 1rem;
    border-right: none;
}
.password_eye{
    width: 5rem;
    height: 5rem;
    background-color: #242424;

    border-left: none;
    border-radius: 0 1rem 1rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
  
  
}
.password_eye i{
    font-size: 1.5rem;
}
.cookie{
    display: flex;
    align-items: center;
    gap: 1rem;
}
#cookieCheckbox{
    width: 4rem;
    height: 4rem;
    background-color: red;
    
}
button{
    width: 100%;
}
.buttons{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.buttons a{
    width: 100%;
 
 
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    text-decoration:underline;
  
}