.header {
    background-color: var(--header-bg);
    padding: 10px 0;
}

.header__content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding: 0 50px;
}

.header__left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header__right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header__login-btn {
    color: #ffffff;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.header__login-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.header__login-btn svg {
    width: 19px;
    height: 19px;
}
