2021 Social Security Tax and Benefit Increases Announced

3 min read

The Social Security Administration recently announced 2021 increases to both benefits and the taxable wage base for FICA taxes.

Increases Announced for 2021

Workers are facing a 3.7 percent increase in the taxable wage base subject to Social Security taxes, increasing the amount from $137,700 up to $142,800. This means high earners who make as much as or more than the taxable wage base will pay $8,853.60 of the employee withholding portion or $17,707.20 in total for the self-employed – who pay both employee and employer portions of the tax.

Retirees receiving benefits will only garner a 1.3 percent cost-of-living (COLA) raise in 2021, resulting in a raise of $20 per month for the average single beneficiary and $33 per month for the average retired couple. COLA increases for beneficiaries have been low for a long time, with several years seeing zero increases in the past decade or so. You can see the historic trend of COLA increases in the chart below, going back to 1975.

Historical Social Security COLA Increases1
Year Increase Year Increase
2020 1.3% 1997 2.1%
2019 1.6% 1996 2.9%
2018 2.8% 1995 2.6%
2017 2.0% 1994 2.8%
2016 0.3% 1993 2.6%
2015 0.0% 1992 3.0%
2014 1.7% 1991 3.7%
2013 1.5% 1990 5.4%
2012 1.7% 1989 4.7%
2011 3.6% 1988 4.0%
2010 0.0% 1987 4.2%
2009 0.0% 1986 1.3%
2008 5.8% 1985 3.1%
2007 2.3% 1984 3.5%
2006 3.3% 1983 3.5%
2005 4.1% 1982 7.4%
2004 2.7% 1981 11.2%
2003 2.1% 1980 14.3%
2002 1.4% 1979 9.9%
2001 2.6% 1978 6.5%
2000 3.5% 1977 5.9%
1999 2.5% 1976 6.4%
1998 1.3% 1975 8.0%

Medical Expenses Outpacing COLA increases

Low COLA increases are putting pressure on retirees’ finances as medical expenses are rising at a much faster pace, with some believing they are given too little weight in the COLA calculation. Moreover, retirees need to consider Medicare Part B and Part D premiums.

While the official 2021 premiums are not announced yet, there are estimates out there that Part B premiums (covering doctor and outpatient services) will raise $9 per month, or approximately 6.2% percent, from $144.30 to $153.30. These are just average figures, as there are income-related surcharges that apply to both Part B and Part D drug premiums. During 2020, for example, individuals making more than $87k per year and couples filing jointly making over $174k per year began paying higher premiums for Part B and Part D than other recipients, with those at the top of the surcharge paying almost $1,000 per month for Part B premiums alone.

Income Caps on Working Beneficiaries

Finally, there are new earnings limits for workers below full retirement age (age 66 for people born in 1943 through 1954). In 2021, those who are not at full retirement age will lose $1 in Social Security benefits for every $2 they earn over $1,580 a month ($18,960 per year). After reaching one’s full retirement age, there are no earning thresholds that will impact benefits.

Conclusion

The 2021 COLA increase continues the recent trend of coming in low and putting pressure on retirees’ finances, while medical expenses continue to rise at much faster rates. As a result, retirees will see less disposable income from their benefits, while high-earning workers will see continued tax increases that outpace benefit payouts. This puts pressure on all beneficiaries of the system.

1 Starting in 1975, Social Security benefit increases have been based on cost-of-living adjustments (COLAs). Pre-1975, the benefit increases were set by legislation.


Disclaimer 

These articles provide general information on tax, accounting, and financial topics for small businesses and individuals. They are educational in nature and are not specific legal, accounting, financial, tax, or other professional advice, and should not be relied upon as such. This content was prepared by Service2Client and may have been reviewed or edited by the website owner for accuracy and compliance. Look for a trust mark below for verification details. No representation is made that any approach described will achieve a particular result, and no regulatory or professional body has reviewed or endorsed this content. Because each situation is different, readers should consult a qualified professional about their specific circumstances before acting. Images accompanying these articles are protected by copyright and may not be copied or reused.

"; return; } var url = block.dataset.restUrl + "?post_id=" + encodeURIComponent(block.dataset.postId) + "&keyword=" + encodeURIComponent(keyword); output.innerHTML = "
Searching…
"; submit.disabled = true; output.setAttribute("aria-busy", "true"); fetch(url, { headers: { "X-WP-Nonce": block.dataset.nonce } }) .then(function(r){ return r.json().then(function(data){ return { status: r.status, data: data }; }); }) .then(function(resp){ if (resp.status === 200 && resp.data && resp.data.success) { dpSimilarRender(output, keyword, resp.data); } else if (resp.status === 403) { output.innerHTML = "
Session expired. Please refresh the page and try again.
"; } else if (resp.status === 429) { output.innerHTML = "
Too many searches. Please try again in a few minutes.
" + dpSimilarCta(output, -1); } else { output.innerHTML = "
Search failed. Please try again.
" + dpSimilarCta(output, -1); } }) .catch(function(){ output.innerHTML = "
Could not reach the server. Please check your connection.
" + dpSimilarCta(output, -1); }) .then(function(){ submit.disabled = false; output.removeAttribute("aria-busy"); }); } function dpAskGrokSend(block) { var input = block.querySelector(".dp-ask-grok-input"); var result = block.querySelector(".dp-ask-grok-result"); var send = block.querySelector(".dp-ask-grok-send"); var form = block.querySelector(".dp-ask-grok-form"); var button = block.querySelector(".dp-ask-grok-button"); var intro = block.querySelector(".dp-ask-grok-intro"); var question = (input.value || "").trim(); if (question.length Please ask a question of at least 10 characters."; return; } if (question.length > 500) { result.innerHTML = "
Question is too long. Please keep it under 500 characters.
"; return; } result.innerHTML = "
Asking Grok\u2026 (this can take 10-20 seconds)
"; send.disabled = true; result.setAttribute("aria-busy", "true"); fetch(block.dataset.restUrlAskGrok, { method: "POST", headers: { "Content-Type": "application/json", "X-WP-Nonce": block.dataset.nonce }, body: JSON.stringify({ post_id: parseInt(block.dataset.postId, 10), question: question }) }) .then(function(r){ return r.json().then(function(data){ return { status: r.status, data: data }; }); }) .then(function(resp){ if (resp.status === 429) { if (form) form.style.display = "none"; if (intro) intro.style.display = ""; if (button) { button.style.display = ""; button.disabled = true; button.setAttribute("title", "Daily limit reached. Try again tomorrow."); button.textContent = "Daily limit reached"; } var rateMsg = (resp.data && resp.data.message) ? resp.data.message : "You\u2019ve reached today\u2019s question limit. Please try again tomorrow."; result.innerHTML = "
" + dpSimilarEscape(rateMsg) + "
"; return; } if (resp.status === 403) { result.innerHTML = "
Session expired. Please refresh the page and try again.
"; return; } if (resp.status === 200 && resp.data && resp.data.success) { var safeAnswer = dpSimilarEscape(resp.data.answer || ""); var safeDisclaimer = dpSimilarEscape(resp.data.disclaimer || ""); var answerHtml = "
"; answerHtml += "

" + safeAnswer + "

"; answerHtml += "

\u26a0\ufe0f " + safeDisclaimer + "

"; answerHtml += "
"; result.innerHTML = answerHtml; if (form) form.style.display = "none"; if (intro) intro.style.display = ""; if (button) { button.style.display = ""; button.disabled = true; button.setAttribute("title", "Daily limit reached. Try again tomorrow."); button.textContent = "Daily limit reached"; } return; } if (resp.status === 200 && resp.data && !resp.data.success) { var msg = dpSimilarEscape(resp.data.message || "Could not process your question right now."); result.innerHTML = "
" + msg + "
"; return; } result.innerHTML = "
Could not process your question right now. Please try again later.
"; }) .catch(function(){ result.innerHTML = "
Could not reach the server. Please check your connection and try again.
"; }) .then(function(){ if (send) send.disabled = false; result.removeAttribute("aria-busy"); }); } function dpSimilarRender(output, keyword, data) { var html = ""; if (data.count === 0) { html += "
No matches found for “" + dpSimilarEscape(keyword) + "”.
"; } else { html += "

Articles matching “" + dpSimilarEscape(keyword) + "”

"; html += "
    "; data.results.forEach(function(r){ html += "
  • "; html += "" + r.title + ""; html += "" + r.date + ""; html += "
  • "; }); html += "
"; } html += dpSimilarCta(output, data.count); output.innerHTML = html; } function dpSimilarCta(output, count) { var block = output.closest(".dp-similar-block"); var contactUrl = block ? block.dataset.contactUrl : ""; if (!contactUrl) { return ""; } var ctaText; if (count === -1) { ctaText = "While you wait, here are some other ways to get help:"; } else if (count === 0) { ctaText = "Couldn\u2019t find what you needed? Speak with a professional for personalized help."; } else { ctaText = "Need more help with this topic? Speak with a professional."; } var html = "
"; html += "

" + ctaText + "

"; html += "Talk to a Professional"; html += "
"; var isFullApi = block && block.dataset.isFullApi === "1"; html += "

Or ask our AI assistant a quick question about this topic.

"; html += ""; html += "
"; html += ""; html += ""; html += ""; html += ""; html += "
"; html += "
"; html += "
"; html += "
"; return html; } function dpSimilarEscape(s) { var div = document.createElement("div"); div.textContent = s; return div.innerHTML; }})();

Coronado-Fortune & Associates, LLC

2021 Social Security Tax and Benefit Increases Announced

December 1, 2020  ·  Blog, Tax and Financial News, Uncategorized

3 min read

The Social Security Administration recently announced 2021 increases to both benefits and the taxable wage base for FICA taxes.

Increases Announced for 2021

Workers are facing a 3.7 percent increase in the taxable wage base subject to Social Security taxes, increasing the amount from $137,700 up to $142,800. This means high earners who make as much as or more than the taxable wage base will pay $8,853.60 of the employee withholding portion or $17,707.20 in total for the self-employed – who pay both employee and employer portions of the tax.

Retirees receiving benefits will only garner a 1.3 percent cost-of-living (COLA) raise in 2021, resulting in a raise of $20 per month for the average single beneficiary and $33 per month for the average retired couple. COLA increases for beneficiaries have been low for a long time, with several years seeing zero increases in the past decade or so. You can see the historic trend of COLA increases in the chart below, going back to 1975.

Historical Social Security COLA Increases1
Year Increase Year Increase
2020 1.3% 1997 2.1%
2019 1.6% 1996 2.9%
2018 2.8% 1995 2.6%
2017 2.0% 1994 2.8%
2016 0.3% 1993 2.6%
2015 0.0% 1992 3.0%
2014 1.7% 1991 3.7%
2013 1.5% 1990 5.4%
2012 1.7% 1989 4.7%
2011 3.6% 1988 4.0%
2010 0.0% 1987 4.2%
2009 0.0% 1986 1.3%
2008 5.8% 1985 3.1%
2007 2.3% 1984 3.5%
2006 3.3% 1983 3.5%
2005 4.1% 1982 7.4%
2004 2.7% 1981 11.2%
2003 2.1% 1980 14.3%
2002 1.4% 1979 9.9%
2001 2.6% 1978 6.5%
2000 3.5% 1977 5.9%
1999 2.5% 1976 6.4%
1998 1.3% 1975 8.0%

Medical Expenses Outpacing COLA increases

Low COLA increases are putting pressure on retirees’ finances as medical expenses are rising at a much faster pace, with some believing they are given too little weight in the COLA calculation. Moreover, retirees need to consider Medicare Part B and Part D premiums.

While the official 2021 premiums are not announced yet, there are estimates out there that Part B premiums (covering doctor and outpatient services) will raise $9 per month, or approximately 6.2% percent, from $144.30 to $153.30. These are just average figures, as there are income-related surcharges that apply to both Part B and Part D drug premiums. During 2020, for example, individuals making more than $87k per year and couples filing jointly making over $174k per year began paying higher premiums for Part B and Part D than other recipients, with those at the top of the surcharge paying almost $1,000 per month for Part B premiums alone.

Income Caps on Working Beneficiaries

Finally, there are new earnings limits for workers below full retirement age (age 66 for people born in 1943 through 1954). In 2021, those who are not at full retirement age will lose $1 in Social Security benefits for every $2 they earn over $1,580 a month ($18,960 per year). After reaching one’s full retirement age, there are no earning thresholds that will impact benefits.

Conclusion

The 2021 COLA increase continues the recent trend of coming in low and putting pressure on retirees’ finances, while medical expenses continue to rise at much faster rates. As a result, retirees will see less disposable income from their benefits, while high-earning workers will see continued tax increases that outpace benefit payouts. This puts pressure on all beneficiaries of the system.

1 Starting in 1975, Social Security benefit increases have been based on cost-of-living adjustments (COLAs). Pre-1975, the benefit increases were set by legislation.


Disclaimer 

These articles provide general information on tax, accounting, and financial topics for small businesses and individuals. They are educational in nature and are not specific legal, accounting, financial, tax, or other professional advice, and should not be relied upon as such. This content was prepared by Service2Client and may have been reviewed or edited by the website owner for accuracy and compliance. Look for a trust mark below for verification details. No representation is made that any approach described will achieve a particular result, and no regulatory or professional body has reviewed or endorsed this content. Because each situation is different, readers should consult a qualified professional about their specific circumstances before acting. Images accompanying these articles are protected by copyright and may not be copied or reused.


Disclaimer 

These articles provide general information on tax, accounting, and financial topics for small businesses and individuals. They are educational in nature and are not specific legal, accounting, financial, tax, or other professional advice, and should not be relied upon as such. This content was prepared by Service2Client and may have been reviewed or edited by the website owner for accuracy and compliance. Look for a trust mark below for verification details. No representation is made that any approach described will achieve a particular result, and no regulatory or professional body has reviewed or endorsed this content. Because each situation is different, readers should consult a qualified professional about their specific circumstances before acting. Images accompanying these articles are protected by copyright and may not be copied or reused.

Service2Client

Share
Published by
Service2Client