.user-create{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.user-form{
    width: 50%;
}
/* change .user-form width on mobile  */
@media screen and (max-width: 500px) {
    .user-form{
        width: 95%;
    }
}
@media screen and (max-width: 800px) {
    .user-form{
        width: 95%;
    }
}


