.contain-add-account-partner{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #fffb;
    position: absolute;
    top: 0;
    transform: scale(0);
    transition: transform 1s ease;
    overflow: scroll;
}
.contain-add-account-partner.active{
    transform: scale(1);
    transition: transform 1s ease;
}

#form-add-account-partner{
    transform: scale(.7);
}