﻿.full-height {
    height: 100vh;
}

.object-fit-cover {
    object-fit: cover;
}

/* Estilo para el Loader */
#AjaxLoader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.8);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
}

/* --- PERSONALIZACIÓN DE COLOR DE FONDO OSCURO --- */
.login-sidebar {
    /* Fondo Azul Oscuro */
    background-color: #161B2E !important;
    /* Color de texto base: Gris Claro */
    color: #cfcfcf !important;
    opacity: 1 !important;
}

/* Enlaces en el panel oscuro: Color gris claro por defecto, blanco al pasar el mouse */
.login-link {
    color: #cfcfcf !important;
    transition: color 0.3s ease;
}

    .login-link:hover {
        color: #ffffff !important;
    }

/* Solo reduce el tamaño en celulares estrechos (menos de 400px) */
@media (max-width: 400px) {
    .recaptcha-wrapper {
        transform: scale(0.85); /* Reduce al 85% del tamaño real */
        transform-origin: center; /* Lo mantiene centrado al reducirse */
        display: inline-block; /* Necesario para que el transform funcione bien */
    }
}

.logo-login {
    max-height: 100px; /* Tamaño para celulares */
}

/* En pantallas medianas y grandes (PC/Tablet), hazlo más grande */
@media (min-width: 768px) {
    .logo-login {
        max-height: 160px; /* Tamaño para PC */
    }
}



#AjaxLoader .spinner-border {
    width: 3rem;
    height: 3rem;
}

.login-form-wrapper {
    max-width: 450px;
}

.label-recordarme {
    color: #cfcfcf;
}