/* body {
    background-color: var(--bg-color);
    color: var(--txt-color);
} */

.img-button {
    background-color: var(--box-bg-color);
    border-radius: 8px;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

.img-button img {
    padding: 20px;
}

.img-button-title {
    text-align: center;
    margin-bottom: 15px;
}

.btn-block {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.box {
    width: 100%;
    background-color: var(--box-bg-color);
    border-radius: 8px;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
    padding: 25px 15px;
    margin-bottom: 15px;
}

.box-login {
    width: 90%;
    max-width: 500px;
    background-color: var(--box-bg-color);
    border-radius: 8px;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
    padding: 35px 25px;
    margin-bottom: 15px;
}

.page-title {
    font-weight: bold;
    font-size: large;
    text-transform: uppercase;
    color: var(--text-color);
}

.icon {
    width: 32px;
    height: 32px;
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: rgba(var(--box-bg-color-rgb), 0.9);
    z-index: 9999;
}

#fixBox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(var(--box-bg-color-rgb), 0.7);
    z-index: 9998;
}

#loader2 {
    display: flex;
    justify-content: center;
}

.profile-icon {
    width: 45px;
    height: 45px;
    border: 2px solid var(--brdr-color);
    padding: 1px;
    border-radius: 100%;
}

.header-text {
    font-size: 1.2rem;
    font-weight: bold;
    padding: 5px 20px;
    margin-left: 20px;
    text-transform: uppercase;
    margin-right: 20px;
    border-radius: 20px;
    background-color: var(--brdr-color);
    transition: background-color 0.3s ease-in-out;
}

.box-title {
    color: var(--label-color);
}