Buscar en FireBase

Buen dia.
Necesito buscar en ésta estructura de FireBase los datos "usuario" y "contraseña" y compararlas con lo ingresado en los campos textos del Login.
"Usuarios" es la Base de Datos y "Natalia Rodriguez" es la etiqueta bajo la cual están guardados los datos.
Me pueden ayudar?
Muchas Gracias !!!!

Screenshot 2022-08-09 at 12-33-59 Firebase console

Is this common for all? Or user tag
(Pls note, dont give space else it will lead to some problem. You can use _as joiner for each item while saving r creating tag)

Ésta es la etiqueta de usuario. Yo lo que tengo que leer, es dentro de esa etiqueta, los campos usuario y contraseña.
La etiqueta me sirve para mostrarla dentro de la App (el nombre de quien ingresó).

Screenshot 2022-08-09 at 12-55-44 Firebase console

I hope that user name is saved in tinydb.

So

set project bucket to Usuarios/tinydb value
Call firebase tag  user name
Call firebase tag  password

When firebase got value

If get tag = user name
If get value = text box value
Then (If get tag = password(if get value= user password text, ) then ~imagine all are correct if this point trigger))else alert wrong password 
Else alert wrong user name

Or pls ref this AIA Displaying and Storing User Data in Firebase - #36 by Spicy_Topics used same logic

And see the blocks Displaying and Storing User Data in Firebase - #28 by Spicy_Topics at here

To avoid this problem, switch the short unique userID with the long capitalized User Name in the tree.

That switches from looping over all users in the tree to just following the path Usarios//Name to get the Name of userID

(where is the unique userId, like ABG001.)

Perdón!! No termino de entender.