     /* BASE STYLES */
        /* ============================================= */
        @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

        :root {
            --primary-color: #3498db;
            --primary-dark: #2980b9;
            --text-color: #2c3e50;
            --light-gray: #ecf0f1;
            --border-color: #ddd;
            --error-color: #e74c3c;
            --success-color: #2ecc71;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Montserrat", sans-serif;
        }
        
        body {
            background-color: #f9f9f9;
            color: var(--text-color);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            padding: 20px;
            margin-top: 75px; /* Espacio para el header fijo */
        }
        
        .auth-container {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 450px;
            padding: 40px;
            margin-top: 20px; /* Espacio adicional */
        }
        
        .auth-header {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .auth-header h1 {
            color: linear-gradient(135deg, #0c3278 0%, #1a6ddf 160%);
            font-weight: 600;
            font-size: 28px;
            margin-bottom: 10px;
           
        }
        
        .auth-header p {
            color: #777;
            font-size: 15px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        label {
            display: block;
            margin-bottom: 8px;
            font-size: 14px;
            color: var(--text-color);
            font-weight: 500;
        }
        
        input[type="text"],
        input[type="email"],
        input[type="password"] {
            width: 100%;
            padding: 14px 15px;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            font-size: 15px;
            transition: all 0.3s ease;
        }
        
        input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
        }
        
        .btn {
            display: block;
            width: 100%;
            padding: 14px;
             background: linear-gradient(135deg, #0c3278 0%, #1a6ddf 160%);
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
        }
        
        .auth-footer {
            text-align: center;
            margin-top: 25px;
            font-size: 14px;
        }
        
        .auth-footer a {
            color: var(--primary-color);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .auth-footer a:hover {
            text-decoration: underline;
        }
        
        /* ============================================= */
        /* HEADER & NAVIGATION */
        /* ============================================= */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            position: fixed;
            top: 0;
            background: linear-gradient(135deg, #0c3278 0%, #1a6ddf 160%);
            z-index: 100;
        }
        
        .container__menu {
            width: 100%;
            height: 75px;
            background: transparent;
            padding: 0 20px;
        }
        
        .menu {
            max-width: 1200px;
            margin: 0 auto;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        /* Logo */
        .logo {
            position: static;
            width: 50px;
            transform: translateZ(40px);
            padding-right: 150px;
        }
        
        .logo img {
            height: 80px;
            width: 204px;
        }
        
        /* Navigation */
        nav {
            height: 100%;
        }
        
        nav > ul {
            height: 100%;
            display: flex;
            align-items: center;
            margin-left: auto;
        }
        
        nav > ul > li {
            height: 100%;
            list-style: none;
            position: relative;
        }
        
        nav > ul > li > a {
            height: 100%;
            display: flex;
            align-items: center;
            padding: 14px;
            color: #ffffff;
            text-transform: uppercase;
            font-size: 0.7em;
            transition: all 300ms ease;
        }
        
        nav > ul > li > a:hover {
            transform: scale(1);
            background: #0a275dec;
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
        }
        
        /* Submenu */
        nav ul li ul {
            position: absolute;
            top: 50px;
            left: 0;
            width: 250px;
            background: rgb(255, 255, 255);
            flex-direction: column;
            padding: 14px 0;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border-radius: 4px;
            border: 1px solid #f0f0f0;
            z-index: 10;
        }
        
        nav ul li ul {
            min-height: 200px;
            padding: 20px 0;
        }
        
        nav ul li ul li {
            margin: 8px 0;
        }
        
        nav ul li ul li a {
            padding: 12px 25px;
            font-size: 0.9em;
            display: flex;
            align-items: center;
            min-height: 40px;
        }
        
        nav ul li:hover > ul {
            opacity: 1;
            visibility: visible;
            top: 60px;
        }
        
        nav ul li ul li {
            list-style: none;
        }
        
        nav ul li ul li a {
            color: #333333;
            padding: 10px 20px;
            display: block;
            transition: all 0.3s ease;
            font-size: 0.8em;
            text-transform: none;
        }
        
        nav ul li ul li a:hover {
            color: #0c3278;
            background: #eaeaea;
        }
        
        /* Search */
        .search-item {
            display: flex;
            align-items: center;
            position: relative;
        }
        
        .search-container {
            display: flex;
            align-items: center;
            position: relative;
            margin-right: 10px;
        }
        
        .search-button {
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            font-size: 1em;
            padding: 10px;
            z-index: 2;
        }
        
        .search-input {
            position: absolute;
            right: 60px;
            width: 0;
            padding: 0;
            border: none;
            background: #ffffff;
            color: rgb(154, 154, 154);
            height: 50px;
            transition: all 0.3s ease;
            border-radius: 20px 0 0 20px;
            opacity: 0;
        }
        
        .search-input:focus {
            outline: none;
        }
        
        .search-input.active {
            width: 350px;
            padding: 0 15px;
            opacity: 1;
        }
        
        /* Mobile Menu */
        .menu-toggle {
            display: none;
            cursor: pointer;
            color: white;
            font-size: 24px;
            background: none;
            border: none;
            padding: 10px;
        }
        
        /* Estilos específicos para el submenú de usuario */
        nav > ul > li.has-submenu.user-menu > ul {
            left: auto;
            right: 0;
            width: 200px;
        }
        
        nav > ul > li.has-submenu.user-menu:hover > ul {
            top: 75px;
            right: 0;
            left: auto;
        }
        
        /* Estilos para los elementos del submenú de usuario */
        .user-submenu li {
            margin: 0;
        }
        
        .user-submenu li a,
        .user-submenu li form button {
            padding: 12px 20px;
            font-size: 0.9em;
            display: flex;
            align-items: center;
            min-height: 40px;
            width: 100%;
            text-align: left;
            color: #333333;
            text-decoration: none;
            transition: all 0.3s ease;
            background: none;
            border: none;
            cursor: pointer;
        }
        
        .user-submenu li a:hover,
        .user-submenu li form button:hover {
            color: #0c3278;
            background: #eaeaea;
        }
        
        /* Iconos en el submenú de usuario */
        .user-submenu li a i,
        .user-submenu li form button i {
            margin-right: 10px;
            width: 18px;
            text-align: center;
        }
        
        /* ============================================= */
        /* RESPONSIVE STYLES */
        /* ============================================= */
        @media (max-width: 768px) {
            /* Mobile Menu */
            .menu-toggle {
                display: block;
            }
            
            nav {
                position: fixed;
                top: 75px;
                left: -100%;
                width: 80%;
                height: calc(100vh - 75px);
                background: #0e3886;
                transition: left 0.3s;
                padding: 20px;
                box-shadow: 5px 0 15px rgba(0,0,0,0.1);
            }
            
            nav.active {
                left: 0;
            }
            
            nav ul {
                flex-direction: column;
                height: auto;
                align-items: flex-start;
            }
            
            nav ul li {
                height: auto;
                width: 100%;
                margin: 10px 0;
            }
            
            @media (max-width: 768px) {
                nav ul li ul {
                    position: static;
                    display: none;
                    width: 100%;
                    box-shadow: none;
                    border: none;
                    padding-left: 15px;
                    opacity: 1;
                    visibility: visible;
                }
                
                nav ul li.active ul {
                    display: block;
                }
            }
            
            .logo img {
                height: 70px;
            }
            
            .search-container {
                width: 100%;
                margin-bottom: 20px;
            }
            
            .search-input {
                width: 100%;
            }
            
            .search-input:focus {
                width: 100%;
            }
            
            /* Search */
            .search-item {
                order: -1;
                width: 100%;
                padding: 10px;
            }
            
            .search-input {
                position: static;
                width: 100%;
                opacity: 1;
                border-radius: 20px;
                margin-right: 10px;
            }
            
            .search-input.active {
                width: calc(100% - 50px);
            }
            
            /* Ajustes para el formulario en móviles */
            body {
                margin-top: 65px;
                padding: 15px;
            }
            
            .auth-container {
                padding: 25px 20px;
                margin-top: 10px;
            }
        }

        @media (max-width: 480px) {
            .auth-container {
                padding: 20px 15px;
            }
            
            .logo {
                padding-right: 0;
            }
            
            .logo img {
                height: 60px;
                width: 150px;
            }
        }