/* ===================================
   LOGIN.CSS - RIGHT PANEL
   PREFIJO: login_ para evitar conflictos
   =================================== */

/* ===================================
   VARIABLES CSS
   =================================== */
:root {
    --primary: #170585;
    --hov-primary: #2647ff;
    --dark-blue: #03133a;
    --secondary: #0dcaf0;
    --hov-secondary: #00a1ff;
    --light: #d9d9ff;
    --success: #4EA72E;
    --info: #722ed1;
    --warning: #FFC519;
    --danger: #EF486A;
    --dark: #03133a;
    --white: #FFFFFF;
    --black: #000000;
    --blue: #007BFF;
    --gray: #A8A8A8;
    --font-family-sans-serif: 'Poppins', sans-serif;
}

/* ===================================
   RESET Y BASE
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-sans-serif);
    background: var(--white);
    color: var(--black);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ===================================
   BANNER OPERATIVO - POSICIÓN SUPERIOR (COMPACTO)
   =================================== */

/* Banner Operativo  */

.login_operational-banner {
    position: absolute;
    top: 2rem;
    left: 5rem;
    right: 5rem;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary) 75%);
    border: 1px solid var(--secondary);
    border-radius: 15px;
    padding: 0.6rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 15;
    box-shadow: 0 4px 12px rgba(23, 5, 133, 0.15);
}
.login_operational-indicator {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.login_operational-light {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00ff00;
    box-shadow: 
        0 0 6px #00ff00,
        0 0 12px #00ff00,
        0 0 18px #00ff00,
        inset 0 0 6px rgba(255, 255, 255, 0.3);
    animation: login_operationalPulse 2s ease-in-out infinite;
}

@keyframes login_operationalPulse {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1);
        box-shadow: 
            0 0 8px #00ff00,
            0 0 16px #00ff00,
            0 0 24px #00ff00,
            inset 0 0 8px rgba(255, 255, 255, 0.3);
    }
    50% { 
        opacity: 0.7; 
        transform: scale(1.1);
        box-shadow: 
            0 0 12px #00ff00,
            0 0 24px #00ff00,
            0 0 36px #00ff00,
            inset 0 0 12px rgba(255, 255, 255, 0.5);
    }
}

.login_operational-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 9px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--secondary);
    letter-spacing: 0.06em;
    text-shadow: 0 0 6px rgba(10, 200, 240, 0.5);
    white-space: nowrap;
}

/* ===================================
   TÍTULO ACCESO PRINCIPAL
   =================================== */
.login_access-text.main-page {
    position: absolute !important;
    top: 30% !important;
    left: 0 !important;
    right: 0 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    font-family: 'Orbitron', sans-serif !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #170585 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    z-index: 9999 !important;
    text-align: center !important;
    padding: 0 1rem !important;
     text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
    margin: 0 !important;
    background: transparent !important;
    border: none !important;
    line-height: 1 !important;
    width: auto !important;
}

/* ===================================
   TÍTULO FORMULARIOS (Registro, Login)
   =================================== */
.login_access-text.form-page {
    position: absolute !important;
    top: 18% !important;
    left: 0 !important;
    right: 0 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    font-family: 'Orbitron', sans-serif !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #170585 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    z-index: 9999 !important;
    text-align: center !important;
    padding: 0 1rem !important;
     text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin: 0 !important;
    background: transparent !important;
    border: none !important;
    line-height: 1 !important;
    width: auto !important;
}

/* Responsive sizes */
@media (min-width: 1400px) {
    .login_access-text.form-page {
        font-size: 24px;
        margin-bottom: 40px;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .login_access-text.form-page {
        font-size: 22px;
        margin-bottom: 35px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .login_access-text.form-page {
        font-size: 20px;
        margin-bottom: 30px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .login_access-text.form-page {
        font-size: 18px;
        margin-bottom: 25px;
    }
}

@media (max-width: 767px) {
    .login_access-text.form-page {
        font-size: 16px;
        margin: 20px auto;
        border-bottom: 1px solid #1a237e;
    }
}

/* ===================================
   BOTONES DE COMANDO - COMPACTOS Y CENTRADOS
   =================================== */

.login_command-control-panel {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    z-index: 15;
    width: 70%;
    max-width: 320px;
}

.login_command-control-btn {
    background: linear-gradient(135deg, var(--primary) 0%, #170585 100%);
    border: 1px solid var(--primary);
    border-radius: 8px;
    padding: 0.8rem 0.6rem;
    color: #f1f5f9;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    min-height: 50px;
    letter-spacing: 0.08em;
    box-shadow: 
        0 4px 8px rgba(23, 5, 133, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    text-align: center;
}

.login_command-control-btn:hover {
    background: linear-gradient(135deg, var(--dark-blue) 0%, #0000FF 50%, var(--primary) 100%);
    border-color: var(--secondary);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 
        0 6px 12px rgba(0, 0, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

.login_command-control-btn:active {
    transform: translateY(0);
    box-shadow: 
        0 4px 8px rgba(23, 5, 133, 0.3),
        inset 0 1px 0 rgba(0, 0, 0, 0.1);
}

.login_command-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-align: center;
    transition: all 0.3s ease;
    line-height: 1.2;
}

.login_command-control-btn:hover .login_command-label {
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* ===================================
   BOTÓN DEMO - COMPACTO Y CENTRADO
   =================================== */
   
.login_demo-access-btn {
    position: absolute;
    top: 62%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    max-width: 240px;
    background: linear-gradient(135deg, rgba(188, 218, 248, 0.15) 0%, rgba(188, 218, 248, 0.4) 100%);
    border: 1px solid rgba(188, 218, 248, 0.5);
    border-radius: 6px;
    padding: 0.7rem 1rem;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    z-index: 15;
    overflow: hidden;
    font-weight: 600;
    backdrop-filter: blur(15px);
    box-shadow: 
        0 3px 10px rgba(188, 218, 248, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    min-height: 40px;
}

.login_demo-access-btn:hover {
     background: linear-gradient(135deg, rgba(188, 218, 248, 0.) 0%, rgba(188, 218, 248, 0.7) 100%);
    border-color: var(--secondary);
    box-shadow: 
        0 4px 15px rgba(188, 218, 248, 0.4),
        0 0 25px rgba(188, 218, 248, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    color: #03133a;
    text-decoration: none;
}

.login_demo-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: all 0.3s ease;
}

.login_demo-access-btn:hover .login_demo-label {
    color: #03133a;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}


/* ===================================
   CONTENEDOR INFERIOR - LOGO Y FOOTER (COMPACTO)
   =================================== */
.login_bottom-container {
    position: absolute !important;
    bottom: 1.5rem !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.6rem !important;
    z-index: 20 !important;
    opacity: 1 !important;
    visibility: visible !important;
    background: transparent !important;
    width: 80% !important;
    max-width: 280px !important;
}

.login_right-panel-logo {
    display: flex !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    position: relative !important;
    z-index: 21 !important;
}

.login_right-panel-logo img {
    height: 24px !important;
    width: auto !important;
    max-width: 100px !important;
    object-fit: contain !important;
    transition: all 0.3s ease !important;
    opacity: 1 !important;
    visibility: visible !important;
    /* display: block !important; */ /* Controlado por inline style */
    margin: 0 auto !important;
}

.login_right-panel-logo:hover img {
    transform: scale(1.05) !important;
}

.login_right-footer {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.3rem !important;
    flex-shrink: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    z-index: 21 !important;
}

.login_footer-status {
    display: flex !important;
    justify-content: center !important;
}

.login_connection-status {
    display: flex !important;
    align-items: center !important;
    gap: 0.4rem !important;
    font-family: 'Public Sans', sans-serif !important;
    font-size: 9px !important;
    color: var(--gray) !important;
    font-weight: 500 !important;
}

.login_connection-dot {
    width: 5px !important;
    height: 5px !important;
    border-radius: 50% !important;
    background: var(--success) !important;
    animation: login_pulse 2s infinite !important;
    box-shadow: 0 0 3px var(--success) !important;
}

.login_footer-links {
    text-align: center !important;
    font-family: 'Public Sans', sans-serif !important;
    font-size: 8px !important;
    font-weight: 600 !important;
    margin-top: 0.1rem !important;
    line-height: 1.4 !important;
}

.login_footer-links a {
    color: var(--gray) !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.login_footer-links a:hover {
    color: var(--primary) !important;
}

.footer-separator {
    margin: 0 0.4rem;
    font-size: 8px !important;
    font-weight: 400 !important;
    color: #434343;
    opacity: 0.7;
    display: inline-block;
    vertical-align: middle;
}

@keyframes login_pulse {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1); 
        box-shadow: 0 0 4px var(--success);
    }
    50% { 
        opacity: 0.6; 
        transform: scale(1.2); 
        box-shadow: 0 0 8px var(--success);
    }
}


/* Responsive para móviles */
@media (max-width: 576px) {
    /* OCULTAR PANEL IZQUIERDO */
    .col-xxl-7.col-lg-7 {
        display: none !important;
    }
    
    /* PANEL DERECHO OCUPA TODA LA PANTALLA */
    .col-xxl-5.col-lg-5 {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }
    
    .login_right-panel-logo img {
        height: 12px;
        max-width: 120px;
    }
    
    .login_form-container {
        left: 1rem !important;
        right: 1rem !important;
        padding: 1.2rem !important;
    }
    
    .login_access-text {
        font-size: 16px !important;
        top: 22% !important;
    }
    
    .login_operational-banner {
        left: 1rem !important;
        right: 1rem !important;
        top: 1rem !important;
    }
}

/* Responsive para tablets */
@media (min-width: 577px) and (max-width: 768px) {
    .col-xxl-7.col-lg-7 {
        display: none !important;
    }
    
    .col-xxl-5.col-lg-5 {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }
}


/* ===================================
   FORMULARIOS - AJUSTADOS AL TAMAÑO DISPONIBLE
   =================================== */

/* Contenedor del formulario - POSICIÓN MÁS BAJA PARA NO SUPERPONERSE */
.login_form-container {
    position: absolute !important;
    top: 50% !important;
    left: 5rem !important;
    right: 5rem !important;
    transform: translateY(-50%) !important;
    z-index: 999 !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(15px) !important;
    border-radius: 6px !important;
    padding: 1rem !important;
    box-shadow: 0 4px 15px rgba(188, 218, 248, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
    border: 0px solid #bcdaf8 !important;
    max-height: 50vh !important;
    overflow-y: auto !important;
}

.login_form {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.login_form-group {
    margin-bottom: 0.8rem !important;
    width: 100% !important;
}

.login_form-label {
    /* display: block !important; */ /* Controlado por inline style */
    margin-bottom: 0.3rem !important;
    font-weight: 600 !important;
    color: var(--primary) !important;
    font-size: 12px !important;
    font-family: 'Orbitron', sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    text-align: left !important;
}

/* Campos de texto - COMPACTOS */
.login_form-input {
    width: 100% !important;
    padding: 0.6rem 1rem !important;
    border: 1px solid #bcdaf8 !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    font-family: 'Poppins', sans-serif !important;
    background: rgba(255, 255, 255, 0.95) !important;
    color: var(--primary) !important;
    transition: all 0.3s ease !important;
    height: 36px !important;
    box-sizing: border-box !important;
    outline: none !important;
    margin: 0 !important;
    backdrop-filter: blur(10px) !important;
}

.login_form-input:focus {
    outline: none !important;
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 2px rgba(188, 218, 248, 0.3) !important;
    background: rgba(255, 255, 255, 1) !important;
}

.login_form-input::placeholder {
    color: var(--gray) !important;
    font-size: 12px !important;
    opacity: 0.7 !important;
    
}

.login_form-input.is-invalid {
    border-color: var(--danger) !important;
    box-shadow: 0 0 0 2px rgba(239, 72, 106, 0.1) !important;
}

.login_invalid-feedback {
    color: var(--danger) !important;
    font-size: 10px !important;
    margin-top: 0.2rem !important;
    /* display: block !important; */ /* Controlado por inline style */
}

.login_form-options {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 0.8rem !important;
    font-size: 11px !important;
}

.login_form-check {
    display: flex !important;
    align-items: center !important;
    gap: 0.4rem !important;
}

.login_form-check-input {
    width: 14px !important;
    height: 14px !important;
    accent-color: var(--primary) !important;
}

.login_form-check-label {
    color: var(--gray) !important;
    font-size: 10px !important;
    font-weight: 400 !important;
    cursor: pointer !important;
    user-select: none !important;
    margin-top: 0.5rem !important;
}


.login_form-forgot-info {
    background: rgba(188, 218, 248, 0.1);
    border: 1px solid #bcdaf8;
    color: #170585;
    padding: 0.8rem;
    border-radius: 6px;
    font-size: 11px;
    letter-spacing: 0.1em !important;
     font-weight: 400 !important;
    font-family: 'Poppins', sans-serif !important;
    text-align: center;
    line-height: 1.3;
}

.login_forgot-link {
    color: var(--gray) !important;
    text-decoration: none !important;
    font-size: 10px !important;
    font-weight: 400 !important;
    letter-spacing: 0.1em !important;
    
}

.login_forgot-link:hover {
    color: var(--hov-primary) !important;
    text-decoration: underline !important;
}

/* Botón INGRESAR - COMPACTO */
.login_btn {
    width: 100% !important;
    padding: 0.6rem 1rem !important;
    border: 1px solid #bcdaf8 !important;
    border-radius: 6px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    /* display: block !important; */ /* Controlado por inline style */
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    font-family: 'Orbitron', sans-serif !important;
    margin-bottom: 0.8rem !important;
    height: 36px !important;
    box-sizing: border-box !important;
    backdrop-filter: blur(10px) !important;
}

.login_btn-primary {
    background: linear-gradient(135deg, rgba(188, 218, 248, 0.15) 0%, rgba(188, 218, 248, 0.4) 100%);
    padding: 0.6rem 1rem;
    color: var(--primary) !important;
    border: 1px solid #bcdaf8 !important;
}

.login_btn-primary:hover {
     background: linear-gradient(135deg, rgba(188, 218, 248, 0.) 0%, rgba(188, 218, 248, 0.7) 100%);
    box-shadow: 
        0 4px 15px rgba(188, 218, 248, 0.4),
        0 0 25px rgba(188, 218, 248, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
color: var(--primary) !important;
     border: 1px solid var(--secondary)!important;
}

.login_register-section {
    text-align: center !important;
    padding: 0.6rem 0 0 0 !important;
    border-top: 1px solid rgba(188, 218, 248, 0.3) !important;
    margin-top: 0.6rem !important;
}

.login_register-text {
    color: var(--gray) !important;
    font-weight: 400 !important;
    font-size: 11px !important;
    margin-right: 0.7rem !important;
    display: inline !important;
}

.login_register-link {
    color: var(--gray) !important;
    text-decoration: none !important;
    font-weight: 400 !important;
    font-size: 11px !important;
    display: inline !important;
}
.login_register-link:hover {
    color: var(--hov-primary) !important;
    text-decoration: underline !important;
}


/* ===================================
   /home/com/public_html/public/assets/css/auth_video.css
   PREFIJO: video_ para evitar conflictos
   =================================== */

/* CSS OPTIMIZADO - VIDEO PERFECTAMENTE CENTRADO */

/* Panel derecho - estructura principal */
.col-xxl-6.col-lg-6 {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
}

/* Texto PORTALDOC - posición fija arriba */
.login_access-text {
    text-align: center;
    font-weight: bold;
    color: #1a237e;
    letter-spacing: 2px;
    position: relative;
    z-index: 10;
    margin: 20px 0;
    flex-shrink: 0; /* No se encoge */
}

/* Contenedor del video - ocupa el espacio restante y centra */
.video-presentation-container {
    flex: 1; /* Ocupa todo el espacio disponible */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centrado vertical perfecto */
    align-items: center; /* Centrado horizontal perfecto */
    padding: 20px;
    gap: 20px;
    min-height: 400px; /* Altura mínima para dar espacio al video */
    position: relative;
    z-index: 5;
}

.video-frame {
    width: 90%; /* Más ancho */
    max-width: 800px; /* Mucho más grande */
    min-width: 400px; /* Tamaño mínimo */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 0 40px rgba(100, 150, 255, 0.4),
        0 0 80px rgba(100, 150, 255, 0.2),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
    background: linear-gradient(145deg, #4a90e2, #6bb6ff) padding-box,
                linear-gradient(145deg, #87ceeb, #4a90e2, #6bb6ff) border-box;
    position: relative;
    transition: all 0.3s ease;
}
/* Efecto hover futurista */
.video-frame:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 0 60px rgba(100, 150, 255, 0.6),
        0 0 120px rgba(100, 150, 255, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

/* Efecto de scan lines */
.video-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 2px,
        rgba(135, 206, 235, 0.03) 2px,
        rgba(135, 206, 235, 0.03) 4px
    );
    pointer-events: none;
    z-index: 1;
    border-radius: 18px;
}

/* Corner indicators (como radar) */
.video-frame::after {
    content: '';
    position: absolute;
    top: 15px;
    right: 15px;
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff88;
    animation: pulse 2s infinite;
    z-index: 2;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.video-frame video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    position: relative;
    z-index: 0;
}

/* Overlay de interfaz tech */
.video-tech-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 3;
    border-radius: 18px;
    background: 
        radial-gradient(circle at 20% 80%, rgba(135, 206, 235, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(74, 144, 226, 0.1) 0%, transparent 50%);
}

/* Status indicators */
.video-status-bar {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    gap: 8px;
    z-index: 4;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00ff88;
    box-shadow: 0 0 8px #00ff88;
    animation: statusPulse 3s infinite;
}

.status-dot:nth-child(2) {
    background: #00d4ff;
    box-shadow: 0 0 8px #00d4ff;
    animation-delay: 1s;
}

.status-dot:nth-child(3) {
    background: #ff6b00;
    box-shadow: 0 0 8px #ff6b00;
    animation-delay: 2s;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

@keyframes labelShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
    100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
}


/* Desktop muy grande */
@media (min-width: 1400px) {
    .login_access-text {
        font-size: 20px;
        margin: 30px 0;
    }
    .video-frame {
        max-width: 900px;
        width: 85%;
    }
}

/* Desktop estándar */
@media (min-width: 1200px) and (max-width: 1399px) {
    .login_access-text {
        font-size: 18px;
        margin: 25px 0;
    }
    .video-frame {
        max-width: 800px;
        width: 85%;
    }
}

/* Laptop */
@media (min-width: 992px) and (max-width: 1199px) {
    .login_access-text {
        font-size: 16px;
        margin: 20px 0;
    }
    .video-frame {
        max-width: 700px;
        width: 90%;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991px) {
    .login_access-text {
        font-size: 18px;
        margin: 15px 0;
    }
    .video-frame {
        max-width: 600px;
        width: 95%;
        min-width: 300px;
    }
    .video-presentation-container {
        padding: 15px;
        min-height: 350px;
    }
}

/* Móvil */
@media (max-width: 767px) {
    .login_access-text {
        font-size: 16px;
        margin: 15px 0;
    }
    .video-frame {
        width: 95%;
        max-width: none;
        min-width: 280px;
        margin: 0 10px;
    }
    .video-presentation-container {
        padding: 10px;
        min-height: 300px;
    }
    
    /* En móvil mostrar solo panel derecho a pantalla completa */
    .col-xxl-7.col-lg-6 {
        display: none !important;
    }
    
    .col-xxl-5.col-lg-5 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Asegurar que el footer quede abajo */
.footer_auth {
    flex-shrink: 0;
    margin-top: auto;
}