#success_dialog{
width: 100%;
height: 100%;
position:absolute;
top: 0;
left: 0;
z-index: 200;
}
#inner_dialog{
position: relative;
height: 100%;
width: 100%;
display: flex;
justify-content: center;
}
#inner_dialog .cover{
position: absolute;
height: 100%;
width: 100%;
background-color: black;
opacity: 40%;
}
#inner_dialog .form{
width: 500px;
background-color: white;
padding: 10px;
z-index: 100;
position: absolute;
border-bottom-left-radius: 20px;
border-bottom-right-radius: 20px;
animation: form_in 1s;
}

@keyframes form_in{
    0%{
       top:-100% 
    }
    100%{
        top:0;
    }
}

p{
color:#105934;
}
.fa-square-xmark{
font-size: 30px;
color:#E91C21;
margin: 20px;
}