/**
* ============================================================================
* SISTEMA INTRANET 2.0 - SOFTWARE DE GESTIÓN ACADÉMICA Y PEDAGÓGICA
* ============================================================================
* Ruta        : /intranet2/vistas/css/acceso.css
* Archivo     : acceso.css
* PHP Version : 8.4
* FECHA ACTUALIZACION : 16/09/2026
* ============================================================================
*/

body.login-page {
    position: relative;
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #0f172a;
}

.bg-video {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.72);
    z-index: 2;
    backdrop-filter: blur(2px);
}

.login-box {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 440px;
    background: #ffffff;
    border-radius: 12px;
    padding: 2.2rem;
    margin: 1rem;
}

.univ-title {
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #0f172a;
    margin: 0;
}

.univ-subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #1e3a8a;
    margin: 0.2rem 0;
}

.faculty-title {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #475569;
    margin-bottom: 0.4rem;
}

.divider-line {
    height: 2px;
    background: linear-gradient(90deg, rgba(37,99,235,0) 0%, rgba(37,99,235,1) 50%, rgba(37,99,235,0) 100%);
}

.quote-text {
    font-size: 0.8rem;
}

.link-recuperar:hover {
    color: #2563eb !d-none;
    text-decoration: underline !important;
}