body { font-family: 'Montserrat', sans-serif; }
        
        /* Los colores de tu captura */
        :root {
            --lw-green-dark: #1a392a;  /* El verde oscuro del fondo de tu imagen */
            --lw-green-light: #2d5a43; /* El verde de los botones */
            --lw-accent: #09FF00;      /* El verde neón de tu código CSS */
        }

        .bg-loanware-gradient {
            background: linear-gradient(135deg, #f0f4f2 0%, #d1dbd6 100%);
        }

        .glass-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(26, 57, 42, 0.1);
        }

        .btn-loanware {
            background-color: var(--lw-green-dark);
            transition: all 0.3s ease;
        }

        .btn-loanware:hover {
            background-color: var(--lw-green-light);
            box-shadow: 0 10px 20px rgba(26, 57, 42, 0.2);
            transform: translateY(-2px);
        }

        .input-focus:focus {
            border-color: var(--lw-green-light);
            box-shadow: 0 0 0 3px rgba(45, 90, 67, 0.1);
        }

    
/*acessibilidD*/

/* --- BURBUJA DE ACCESIBILIDAD GLASSMORPHISM --- */
/* --- BURBUJA DE ACCESIBILIDAD --- */
.accessibility-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10000 !important;
}

.btn-access {
    width: 65px;
    height: 65px;
    background: #1a392a !important; /* El verde oscuro de tu login */
    border: 2px solid #09FF00; /* El verde neón */
    border-radius: 50%;
    cursor: grab;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(9, 255, 0, 0.3);
    transition: all 0.3s ease;
    animation: pulse-neon 2s infinite;
}

/* ESTO ARREGLA EL ICONO NEGRO */
.btn-access i {
    color: #09FF00 !important; /* Forzamos color neón */
    font-size: 1.8rem !important;
    text-shadow: 0 0 8px rgba(9, 255, 0, 0.6);
}

.btn-access:hover {
    transform: scale(1.1);
    background: #09FF00 !important;
}

.btn-access:hover i {
    color: #1a392a !important; /* Invierte colores al pasar el mouse */
}

/* Menú Cristalizado */
.access-menu {
    position: absolute;
    bottom: 80px;
    right: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    width: 250px;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    display: none;
    flex-direction: column;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.access-menu.active { display: flex; }

.access-menu h4 {
    color: #1a392a;
    text-align: center;
    font-weight: 800;
    margin-bottom: 5px;
}

.access-section {
    background: rgba(26, 57, 42, 0.05);
    padding: 10px;
    border-radius: 12px;
}

.access-section button {
    width: 100%;
    background: white;
    border: none;
    padding: 8px;
    margin-top: 5px;
    border-radius: 8px;
    color: #1a392a;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: 0.3s;
}

.access-section button:hover {
    background: #1a392a;
    color: #09FF00;
}

@keyframes pulse-neon {
    0% { box-shadow: 0 0 0 0 rgba(9, 255, 0, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(9, 255, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(9, 255, 0, 0); }
}