Poderia me ajudar a achar essa animação, já tentei e não achei
*{
box-sizing: border-box;
}
body {
margin: 0;
padding: 0;
font-family: Arial;
background-color: #0344f7;
overflow: hidden;
}
h1 {
margin: 0;
padding: 0;
}
.container {
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.box_form {
width: 420px;
background-color: #0095cf;
border: 1px solid white ;
border-radius: 15px;
}
.title {
display: flex;
align-items: flex-end;
justify-content: center;
color: #FFF;
height: 80px;
}
.form_inputs form {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 330px;
}
.form_inputs label {
text-align: center;
color: white;
}
.form_inputs input {
text-align: center;
width: 200px;
margin-top: 5px;
padding: 5px;
border:none;
border-radius: 5px;
}
.form_inputs .enviar {
width: 100px;
margin-top: 8px;
border-radius: 7px;
padding: 10px;
color: white;
font-weight: bold;
font-size: 16px;
border:0;
background-color: green;
}
.aprovacao,
.reprovacao {
color: #000;
text-align: center;
}
.aprovacao {
padding: 10px;
}
.modal-container{
width: 100vw;
height: 100vh;
background-color: rgba(0, 0, 0, .5);
position: fixed;
top: 0 ;
left: 0;
z-index: 2000;
display: none;
justify-content: center;
align-items: center;
}
.modal {
background-color: white;
max-width: 60%;
min-width: 300px;
padding: 40px;
box-shadow: 5px 5px 6px 4px #000;
border-radius: 10px;
position: relative;
}
@keyframes modal {
from {
opacity: 0;
transform: translate3d(0,-60px, 0);
}
to {
opacity: 1;
transform: translate3d(0, 0, 0);
}
}
.mostrar .modal {
animation: modal .3s;
}
.modal-container .mostrar {
display: flex;
}
.fechar {
position: absolute;
top: 5px;
left: 5px;
width: 30px;
height: 30px;
border-radius: 50%;
border: 0;
background-color: white;
font-size: 25px;
cursor: pointer;
}