html,
body {
    height: 100%;
    width: 100%;
    background-color: #E5E5E5;
}

.center {
    align-items: center;
    display: flex;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.pulse-animation {
    animation: pulse 2s linear infinite;
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
    50% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }
    100% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
}

/* G3 Recaptcha is hidden initially */
.grecaptcha-badge {
    visibility: hidden;
}