
        :root {
            --olimpo-yellow: #FFD700;
            --olimpo-black: #1A1A1D;
            --olimpo-dark: #000000;
            --olimpo-gray: #6c757d;
            --olimpo-light-gray: #f5f5f5;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Outfit', sans-serif;
            background: 
                linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), /* Overlay negro */
                url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1920&q=80')
                center center / cover no-repeat,
                linear-gradient(135deg, var(--olimpo-black) 0%, #2d2d30 50%, #1A1A1D 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        
        /* Patrón de fondo griego sutil */
        body::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                repeating-linear-gradient(
                    90deg,
                    transparent,
                    transparent 50px,
                    rgba(255, 215, 0, 0.03) 50px,
                    rgba(255, 215, 0, 0.03) 51px
                );
            pointer-events: none;
        }
        
        /* =========================================
           HERO TEXT - LADO IZQUIERDO
           ========================================= */
        .auth-hero-text {
            position: fixed;
            left: 120px;
            top: 50%;
            transform: translateY(-50%);
            max-width: 600px;
            z-index: 10;
            animation: fadeInLeft 1s ease-out;
        }
        
        .hero-content {
            padding-right: 60px;
            border-right: 3px solid var(--olimpo-yellow);
        }
        
        .hero-title {
            font-size: 4.5rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 25px;
            color: white;
            text-transform: uppercase;
            letter-spacing: -1px;
        }
        
        .hero-line {
            display: block;
            margin-bottom: 8px;
        }
        
        .hero-line.highlight {
            color: var(--olimpo-yellow);
            position: relative;
            display: inline-block;
        }
        
        .hero-line.highlight::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--olimpo-yellow);
            transform: scaleX(0.9);
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 20px;
            font-weight: 500;
            letter-spacing: 0.5px;
        }
        
        .hero-description {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            font-weight: 300;
            max-width: 500px;
        }
        
        /* Animación de entrada */
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateY(-50%) translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(-50%) translateX(0);
            }
        }
        
        /* Ajustar para pantallas muy grandes */
        @media (min-width: 1600px) {
            .auth-hero-text {
                left: 180px;
            }
            
            .hero-title {
                font-size: 5rem;
            }
        }
        
        /* Ajustar para pantallas medianas */
        @media (min-width: 992px) and (max-width: 1200px) {
            .auth-hero-text {
                left: 80px;
                max-width: 500px;
            }
            
            .hero-title {
                font-size: 3.8rem;
            }
            
            .hero-content {
                padding-right: 40px;
            }
        }
        
        /* Ocultar en móviles/tablets */
        @media (max-width: 991px) {
            .auth-hero-text {
                display: none !important;
            }
        }
        
        .auth-container {
            width: 100%;
            max-width: 480px;
            padding: 20px;
            margin-left: auto;
        }
        
        /* Desktop - mover a la derecha */
        @media (min-width: 992px) {
            .auth-container {
                margin-right: 100px; /* Ajusta este valor según necesites */
            }
        }
        
        /* Móviles y tablet - centrado */
        @media (max-width: 991px) {
            .auth-container {
                margin-right: auto; /* Esto lo centrará */
            }
        }
        
        .auth-card {
            background: white;
            border-radius: 0;
            padding: 50px 40px;
            border-top: 5px solid var(--olimpo-yellow);
        }
        
        .auth-logo {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .auth-logo img {
            width: 120px;
            height: 120px;
            margin-bottom: 20px;
        }
        
        .auth-logo h1 {
            color: var(--olimpo-black);
            font-size: 32px;
            font-weight: 800;
            margin: 0;
            letter-spacing: -0.5px;
        }
        
        .auth-logo .olimpo-text {
            color: var(--olimpo-yellow);
        }
        
        .auth-logo p {
            color: var(--olimpo-gray);
            font-size: 14px;
            margin-top: 8px;
            font-weight: 500;
        }
        
        /* Floating Labels */
        .form-floating {
            position: relative;
            margin-bottom: 25px;
        }
        
        .form-floating > .form-control {
            height: 58px;
            padding: 20px 16px 8px 16px;
            border: 2px solid #e0e0e0;
            border-radius: 0;
            font-size: 15px;
            font-weight: 500;
            transition: all 0.2s ease;
            background-color: white;
        }
        
        .form-floating > label {
            position: absolute;
            top: 18px;
            left: 16px;
            padding: 0 4px;
            color: var(--olimpo-gray);
            font-size: 15px;
            font-weight: 500;
            transition: all 0.2s ease;
            pointer-events: none;
        }
        
        .form-floating > .form-control:focus,
        .form-floating > .form-control:not(:placeholder-shown) {
            padding-top: 25px;
            padding-bottom: 8px;
            border-color: var(--olimpo-black);
            background-color: white;
            outline: none;
        }
        
        .form-floating > .form-control:focus ~ label,
        .form-floating > .form-control:not(:placeholder-shown) ~ label {
            top: 8px;
            font-size: 12px;
            color: var(--olimpo-black);
            font-weight: 600;
        }
        
        .form-floating .form-control.is-invalid {
            border-color: #dc3545;
            background-color: #fff;
        }
        
        .form-floating .input-icon {
            position: absolute;
            right: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--olimpo-gray);
            font-size: 18px;
            pointer-events: none;
            transition: color 0.2s ease;
        }
        
        .form-floating .form-control:focus ~ .input-icon {
            color: var(--olimpo-black);
        }
        
        .invalid-feedback {
            font-size: 13px;
            margin-top: 6px;
            font-weight: 500;
        }
        
        /* Remember & Forgot */
        .auth-options {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }
        
        .form-check {
            display: flex;
            align-items: center;
        }
        
        .form-check-input {
            width: 20px;
            height: 20px;
            border: 2px solid #e0e0e0;
            border-radius: 0;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        
        .form-check-input:focus {
            outline: none;
            box-shadow: none;
        }
        
        .form-check-input:checked {
            background-color: var(--olimpo-yellow);
            border-color: var(--olimpo-yellow);
        }
        
        .form-check-label {
            margin-left: 10px;
            color: var(--olimpo-black);
            font-weight: 500;
            font-size: 14px;
            cursor: pointer;
        }
        
        /* Link con animación de izquierda a derecha */
        .forgot-password {
            color: var(--olimpo-black);
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            position: relative;
            display: inline-block;
            padding-bottom: 2px;
            transition: color 0.2s ease;
        }
        
        .forgot-password::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--olimpo-yellow);
            transition: width 0.3s ease;
        }
        
        .forgot-password:hover {
            color: var(--olimpo-yellow);
        }
        
        .forgot-password:hover::after {
            width: 100%;
        }
        
        /* Button */
        .btn-primary {
            background-color: var(--olimpo-yellow);
            border: none;
            padding: 16px 24px;
            border-radius: 0;
            font-weight: 700;
            font-size: 16px;
            width: 100%;
            color: var(--olimpo-black);
            transition: all 0.2s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .btn-primary:hover {
            background-color: #FFC700;
            color: var(--olimpo-black);
        }
        
        .btn-primary:active {
            background-color: #E6B800;
        }
        
        .btn-primary:focus {
            outline: none;
            box-shadow: none;
        }
        
        /* Alerts */
        .alert {
            border-radius: 0;
            border: none;
            padding: 14px 18px;
            margin-bottom: 25px;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .alert i {
            font-size: 18px;
        }
        
        .alert-danger {
            background-color: #fee;
            color: #c00;
            border-left: 4px solid #c00;
        }
        
        .alert-success {
            background-color: #d1f2eb;
            color: #0a5847;
            border-left: 4px solid #0a5847;
        }
        
        /* Footer */
        .auth-footer {
            text-align: center;
            margin-top: 30px;
            color: rgba(255, 255, 255, 0.8);
            font-size: 13px;
            font-weight: 500;
        }
        
        .auth-footer a {
            color: var(--olimpo-yellow);
            text-decoration: none;
            font-weight: 600;
            position: relative;
        }
        
        .auth-footer a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--olimpo-yellow);
            transition: width 0.3s ease;
        }
        
        .auth-footer a:hover::after {
            width: 100%;
        }
        
        /* Responsive */
        @media (max-width: 576px) {
            .auth-card {
                padding: 40px 30px;
            }
            
            .auth-logo img {
                width: 100px;
                height: 100px;
            } 
            
            .auth-logo h1 {
                font-size: 28px;
            }
            
            .auth-options {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
        }
        .blacklab-logo {
            height: 25px;
            width: auto;
            filter: brightness(0) invert(1);
            opacity: 0.7;
            transition: all var(--transition-smooth);
        }
        
        .blacklab-logo:hover {
            opacity: 1;
            transform: scale(1.05);
            cursor:pointer;
        }