.balance {
    background: orangered;
    padding: 30px;
    max-width: 600px;
    width: 95%;
    color: #fff;
    margin: 10px auto 30px auto;
    display: grid;
    grid-template-columns: auto auto;
    justify-content: space-between;
    align-items: center;
    border-radius: 12px;
    box-shadow: 3px 3px 12px #808080;
}

.greetings {
    color: #e6e6e6;
}

.greetings h4 {
    color: #fff;
}

.hide-balance {
    display: flex;
    flex-direction: column;
    /* background: red; */
}

.show-balance {
    /* background: blue; */
    max-width: max-content;
    display: grid;
    grid-template-columns: auto auto;
    place-items: center;
    gap: 5px;
}

.eye {
    border: none;
    background: none;
    padding: 0;
    display: grid;
    place-items: center;
}

.balance-display h2 {
    /* background: green; */
    color: #fff;
    text-align: left;
}

.navink {
    padding: 0;
    /* margin-top: -10px; */
    color: #fff;
    /* background: orange; */
}

.eye:hover {
    background: none;
}

@media (max-width:580px) {
    .balance {
        display: block;
        text-align: left;
    }

    .hide-balance {
        margin-top: 10px;
        display: block;
    }

    .show-balance {
        display: flex;
        justify-content: left;
        align-items: center;
        gap: 10px;
    }

    .balance-display h2 {
        text-align: left;
    }
}