@keyframes pulseSubmit {
    0%,
    100% {
        transform: scale(1);
        box-shadow: none;
    }

    50% {
        transform: scale(1.12);
        box-shadow: 0 0 0 0.3rem rgba(13, 110, 253, 0.35);
    }
}

.pulse-submit {
    animation: pulseSubmit 0.45s ease-in-out 2;
}