﻿.loading__container {
    position: absolute;
    margin: auto;
    height: 50px;
    width: 50px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.loading__a, .loading__b {
    position: absolute;
    height: 50px;
    width: 50px;
    background-color: #00a9e8;
    opacity: 0.6;
    top: 0;
    left: 0;
    border-radius: 100%;
    animation: 2.1s ease-in-out 0s infinite normal none running;
}

.loading__a {
    animation-name: bounce;
}

.loading__b {
    animation-name: debounce;
}

@keyframes bounce {
     0%, 100% {
         transform: scale(0);
     }

     50% {
         transform: scale(1);
     }
 }

@keyframes debounce {
     0%, 100% {
         transform: scale(1);
     }

     50% {
         transform: scale(0);
     }
 }

/* reCAPTCHA verification styles */
.recaptcha-verification {
    padding: 130px 109px;
    position: relative;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    margin: 0 auto;
    flex-direction: column;
}

.recaptcha-message {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.recaptcha-message .recaptcha-message-text {
    font-size: 16px;
    color: #333;
    font-family: open sans;
    font-weight: 400;
    padding: 24px 0;
    border-bottom: 1px solid #000;
}

.recaptcha-message .recaptcha-message-button {
    display: flex;
    justify-content: flex-end;
}

.recaptcha-message .recaptcha-message-button .continue-button {
    background-color: #f0efef;
    color: #555555;
    border: none;
    cursor: pointer;
    font-family: open sans;
    font-weight: 400;
    padding: 10px 75px;
    box-shadow: #dbdbdb 0px 0px 0px 1px inset;
}

.recaptcha-message .recaptcha-message-button .continue-button svg{
    width: 24px;
    height: 24px;
    position: relative;
    top: 1px;
}

.recaptcha-message .recaptcha-message-button .continue-button:hover {
    background-color: #5a6eff;
    color: white;
}

.recaptcha-message .recaptcha-message-button .continue-button:active {
    background-color: #5a6eff;
    color: white;
}

.grecaptcha-badge {
    display: none;
}

.recaptcha-legal {
    margin-top: 12px;
    font-size: 11px;
    color: #666;
    text-align: center;
}

.recaptcha-legal a {
    color: inherit;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .recaptcha-message .recaptcha-message-button .continue-button {
        padding: 10px 45px;
    }
}