.auth-page .auth-left-wrapper-pic {
    width: 100%;
    height: 100%;
    background-image: url(../../images/login-pic.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-color: #f9fafb;
}

.locked {
    opacity: 0.15;
}

.lock {
    position: absolute;
    text-align: center;
    background: url('../../images/lock.png') no-repeat center center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 240px;
    height: 230px;
    display: block;
    z-index: 100;
}

.attr-name {
    color: #bdb99f;
    font-size: 13px;
    text-shadow: 1px 1px 2px #000;
}

.locked-item {
    position:relative;
    display:inline-block;
}
.gi-item {
    max-width: 400px;
    line-height: 32px;
}

.gi-obj-center {
    text-align: center;
}

.gi-item-name {
    font-weight: bold;
    overflow: hidden;
    white-space: nowrap;
    display: inline-block;
    text-decoration: none;
    text-overflow: ellipsis;
}


.currency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.currency-card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.currency-code {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #fbbf24;
}

.currency-amount {
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 5px;
}

.currency-rate {
    font-size: 0.9em;
    opacity: 0.8;
    font-style: italic;
}

.loading {
    color: #fbbf24;
    font-style: italic;
}

.error {
    color: #f87171;
    font-style: italic;
}

.currency-code .flag {
    margin-right: 1rem;
}