/**
 * =====================================================
 * 📦 Divexa Auth – Base Global (Login / Registro / Lost)
 * Solo estructura compartida
 * =====================================================
 */


/* =====================================================
   🔥 RESET GLOBAL THEME (ASTRA / ELEMENTOR FIX)
===================================================== */

body[class*="divexa-"] .site-content,
body[class*="divexa-"] .ast-container,
body[class*="divexa-"] .divexa-core-wrapper {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
}


/* =====================================================
   🔥 OCULTAR HEADER / FOOTER SOLO EN AUTH
===================================================== */

body[class*="divexa-"] header,
body[class*="divexa-"] .site-header,
body[class*="divexa-"] .main-header,
body[class*="divexa-"] nav,
body[class*="divexa-"] footer {
    display: none !important;
}


/* =====================================================
   🔹 FONDO FULLSCREEN GLOBAL AUTH
===================================================== */

body[class*="divexa-"] {
    min-height: 100vh;
    background: linear-gradient(180deg, #0b1c33, #020617);
    margin: 0;
}


/* =====================================================
   🔹 WRAPPER FULL HEIGHT GLOBAL
===================================================== */

body[class*="divexa-"] .divexa-login-wrapper,
body[class*="divexa-"] .divexa-registro-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}


/* =====================================================
   📱 MOBILE CONTROL GLOBAL
===================================================== */

@media (max-width: 900px) {

    body[class*="divexa-"] .divexa-login-card,
    body[class*="divexa-"] .divexa-registro-card {
        width: 100%;
        max-width: 100%;
        border-radius: 18px;
        padding: 26px 20px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }

}


/* =====================================================
   🔹 MENSAJES COMPARTIDOS
===================================================== */

body[class*="divexa-"] .divexa-alert-success,
body[class*="divexa-"] .divexa-msg.success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #86efac;
    padding: 14px;
    border-radius: 12px;
}

body[class*="divexa-"] .divexa-alert-error,
body[class*="divexa-"] .divexa-msg.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
    padding: 14px;
    border-radius: 12px;
}