Rancher GUI URL in Kubernetes cluster

hi team,
I have created a 3 nodes kubernetes cluster using the RKE.
Installed kubectl and helm on the landing machine and able to connect to the kubernetes cluster.
Installed rancher using helm on the kubernetes cluster from the landing machine.
I can see the pods running as well in the cluster using the below command:
[root@rancher-node .kube]# kubectl -n cattle-system get pods -o wide
NAME READY STATUS RESTARTS AGE IP NODE NOMINATED NODE READINESS GATES
rancher-7b9f48fb86-ncm5n 1/1 Running 0 15m xx.xx.xx.xx 10.xx.xx.x
rancher-7b9f48fb86-qz27s 1/1 Running 0 15m 10.xx.x.xx 10.x.68.xx
rancher-7b9f48fb86-rtzsg 1/1 Running 1 15m 10.xx.x.xx 10.x.xx.x
[root@rancher-node .kube]#

my question is how can i browse to the rancher GUI and with what credentials?
what would be the url in this case to access the rancher GUI.

The URL to access the Rancher URL should be the DNS of the load balancer that routes traffic to the rancher server nodes.

When you browse to the Rancher server URL, you will be prompted to create an administrator username and password, then use those credentials to log in and create other accounts.

perfect. thanks for the reply.