﻿.mud-main-content {
    min-height: 100vh;
}

.loader-container {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: rgba(255,255,255,0.8);
}

.container {
    text-align: center;
}

.loader-image {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
    animation: pulseOpacity 1.5s infinite ease-in-out;
}

@keyframes pulseOpacity {
    0% {
        opacity: 0.2;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.2;
    }
}

.loader-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: #424242;
}

/*.grecaptcha-badge {
    right: 0px !important;
    left: auto !important;
    top: 85% !important;
    bottom: auto !important;*/
    /*transform: scale(0.9) translateY(-50%) !important;*/ /* Escalado al 80% y centrado */
    /*z-index: 1000;
    opacity: 0.8;*/ /* Opcional: m�s discreto visualmente */
/*}*/