nav.navbar a.nav-link {
    color: #fff !important;
    font-weight: 500;
    letter-spacing: 0.5px;
}

nav.navbar a.nav-link:hover {
    color: #ffed4a !important;
}

body {
    background: url('../resources/background.jpg') no-repeat center center fixed;
    background-size: cover;
    margin: 0;
    padding: 0;
}

body .card {
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    background-color: rgb(255 255 255 / 50%);
    border-radius: 1rem;
}

body .card.opacity-80 {
    background-color: rgb(255 255 255 / 80%);
}


.menu-li-bg {
    background: url('../resources/menu-bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    min-width: 120px;
    height: 38px;
    text-align: center;
}
.menu-li-bg a {
    margin-top: 5px;
}

.heading-bg {
    background: url('../resources/heading-bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 100%;
    min-width: 120px;
    height: 38px;
    margin: 0 5px;
    text-align: center;
    color: #fff;
}

.heading-bg:hover,
.heading-bg:hover button {
    color: #ffed4a !important;
}

form div.required label:after {
    content: " *";
    color: red;
    vertical-align: top;
}

footer {
    background-color: rgb(248 249 250 / 12%) !important;
}

.card-user-information .card-header,
.card-user-information ul.list-group li {
    padding: 1.5rem;
}

/* // Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    nav.navbar a.nav-link {
        font-size: 11px;
    }

    .menu-li-bg {
        min-width: 60px;
        height: 30px;
        text-align: center;
        margin: 0 5px;
    }
}

form .has-error .help-block {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 4px;
}
form .control-label {
    margin-bottom: 5px;
}

.card .card-account-list {
    height: 200px;
}
.card .card-account-list .icon i{
    font-size: 3rem;
}
.card .add-card {
    height: 200px;
}
.card-account-list,
.add-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
}

/* Normal account card hover */
.card-account-list:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Add new card hover */
.add-card {
    border: 2px dashed #ced4da;
}

.add-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.25);
    border-color: #0d6efd;
}