Could you help me? I have the following code
.container__login {
width: 100%;
height: 100vh;
background-color: var(--blanco);
display: flex;
justify-content: center;
align-items: center;
transition: all 200ms ease-out;
}
But the transition doesn't work, in this case that's when you press next and this section is shown. Therefore I can't use pseudo-classes on this element, is there a way to create transitions only when I press the "Next" button and it appears smoothly.
Thank you very much for your attention