blob: a2ce597718556005c3d6d9744bedff9158790eca (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
@keyframes smooth-appear {
to {
opacity: 1;
transform: translateY(0);
}
}
.passwordForm {
margin-top: 1rem;
transform: translateY(-5rem);
opacity: 0;
animation: smooth-appear 1s ease forwards;
}
|