/* This CSS is optional */
.aad_status_msg{
    animation: showup 0.3s ease-in-out;
    animation-fill-mode: forwards;
    opacity: 0;
    padding: 15px;
    border-radius: 8px;
    background-color: #f0f0f0;
    color: #333;
}
.aad_status_msg.fade-out {
    animation: fadeout 0.4s ease-in-out;
    animation-fill-mode: forwards;
    opacity: 1;
}
.aad_status_msg.error {
    background-color: #febec3;
    color:#7b2f36;
}
.aad_status_msg.success {
    background-color: #d4f5d4;
    color: #2f7b36;
}
.aad_status_msg.sending {
    background-color: #d4e5f5;
    color: #2f4b7b;
}
@keyframes fadeout {
    from {
        opacity: 1;
        transform: translate(0);
    }
    to {
        opacity: 0;
        translate: translateY(20px) !important;
    }
}
@keyframes showup {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}