body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
line-height: 1.6;
color: #333;
max-width: 1200px;
margin: 0 auto;
padding: 20px;
background-color: #f4f7f6;
}
.calculator-container {
background: #ffffff;
padding: 30px;
border-radius: 12px;
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
max-width: 600px;
margin: 0 auto 40px auto;
border-top: 5px solid #005696; /* First Merchants Bank characteristic blue */
}
.calculator-header {
text-align: center;
margin-bottom: 25px;
}
.calculator-header h2 {
margin: 0;
color: #005696;
font-size: 24px;
}
.input-group {
margin-bottom: 20px;
}
.input-group label {
display: block;
margin-bottom: 8px;
font-weight: 600;
color: #444;
}
.input-wrapper {
position: relative;
}
.input-wrapper input {
width: 100%;
padding: 12px 15px;
border: 1px solid #ddd;
border-radius: 6px;
font-size: 16px;
box-sizing: border-box;
transition: border-color 0.3s;
}
.input-wrapper input:focus {
border-color: #005696;
outline: none;
}
.input-symbol {
position: absolute;
left: 12px;
top: 50%;
transform: translateY(-50%);
color: #777;
}
.input-suffix {
position: absolute;
right: 12px;
top: 50%;
transform: translateY(-50%);
color: #777;
}
.input-with-symbol input {
padding-left: 30px;
}
.input-with-suffix input {
padding-right: 40px;
}
button.calc-btn {
width: 100%;
padding: 14px;
background-color: #d4a017; /* Gold tone for accent */
color: #fff;
border: none;
border-radius: 6px;
font-size: 18px;
font-weight: bold;
cursor: pointer;
transition: background-color 0.3s;
margin-top: 10px;
}
button.calc-btn:hover {
background-color: #b88a12;
}
.results-section {
margin-top: 30px;
padding: 20px;
background-color: #f0f8ff;
border-radius: 8px;
border-left: 4px solid #005696;
display: none;
}
.result-row {
display: flex;
justify-content: space-between;
margin-bottom: 12px;
font-size: 16px;
}
.result-row.total {
border-top: 1px solid #cbd5e0;
padding-top: 12px;
font-weight: bold;
font-size: 18px;
color: #005696;
}
.content-section {
background: #fff;
padding: 40px;
border-radius: 12px;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
h1, h2, h3 {
color: #2c3e50;
}
.tip-box {
background-color: #e8f4fc;
padding: 15px;
border-radius: 6px;
margin: 20px 0;
border-left: 4px solid #005696;
}
@media (max-width: 600px) {
.content-section {
padding: 20px;
}
}
First Merchants Bank CD Rates Calculator
Certificates of Deposit (CDs) are a cornerstone of conservative savings strategies, offering guaranteed returns over a fixed period. When considering opening an account with First Merchants Bank, understanding how your money grows over specific terms is crucial. This calculator helps you project your future savings based on current Annual Percentage Yields (APY) and term lengths.
Pro Tip: First Merchants Bank often runs "CD Specials" with non-standard terms (like 7 months or 13 months) that offer significantly higher APY than standard savings accounts. Always check their official rates page for the latest promotional offers.
How CD Earnings Are Calculated
Unlike standard savings accounts where rates can fluctuate, a CD locks in your interest rate for the duration of the term. The formula used in this calculator utilizes the Annual Percentage Yield (APY) to determine the future value of your deposit.
The calculation follows this logic:
- Principal: The initial amount you deposit ($).
- Term: The duration of the CD in months.
- APY: The effective annual rate of return, which accounts for the effect of compounding interest.
Because APY already factors in compounding frequency, the formula to find your Total Balance is:
Balance = Principal × (1 + APY)(Months / 12)
Understanding First Merchants Bank CD Terms
When selecting a CD term, you are balancing liquidity with yield. Generally, longer terms offer higher rates, but your money is locked away for that duration.
Short-Term CDs (Under 1 Year)
First Merchants Bank often provides terms ranging from 30 days to 11 months. These are ideal for parking cash you might need in the near future, such as saving for a vacation or a holiday shopping fund.
Mid-Term Specials (7 to 18 Months)
Frequently, the most competitive rates appear in this range. Look for specific promotional terms like a 7-month or 13-month CD. These "odd" terms are often used by banks to attract new deposits and usually feature a higher APY compared to a standard 12-month CD.
Long-Term CDs (2 to 5 Years)
For long-term financial goals, such as a down payment on a house several years away, 24-month to 60-month CDs provide a safe haven against market volatility. While the money is less accessible, the interest rate is guaranteed, protecting your earnings even if market rates drop later.
Important Considerations
Before locking in a CD at First Merchants Bank, consider the following:
- Early Withdrawal Penalties: If you withdraw your principal before the maturity date, banks typically charge a penalty. This is often calculated as a number of months' worth of interest (e.g., 90 days of interest for terms under a year).
- FDIC Insurance: First Merchants Bank is FDIC insured, meaning your deposits (up to $250,000 per depositor, per ownership category) are backed by the U.S. government.
- Auto-Renewal: Most CDs automatically renew at maturity for the same term at the current market rate. You typically have a "grace period" of about 10 days after maturity to withdraw funds or change terms without penalty.
Using the Calculator
To use the tool above, simply input the amount you plan to invest, the duration in months, and the APY advertised by First Merchants Bank. The result will show you exactly how much interest you will earn by the time the CD matures, helping you compare different term options effectively.
function calculateFMBReturns() {
// Get input elements by exact ID
var depositInput = document.getElementById('fmb_deposit');
var termInput = document.getElementById('fmb_term');
var apyInput = document.getElementById('fmb_apy');
var resultBox = document.getElementById('results');
// Parse values
var principal = parseFloat(depositInput.value);
var months = parseFloat(termInput.value);
var apyPercent = parseFloat(apyInput.value);
// Validation
if (isNaN(principal) || principal <= 0) {
alert("Please enter a valid deposit amount.");
return;
}
if (isNaN(months) || months <= 0) {
alert("Please enter a valid term length in months.");
return;
}
if (isNaN(apyPercent) || apyPercent < 0) {
alert("Please enter a valid APY percentage.");
return;
}
// Calculation Logic
// Formula based on APY: A = P * (1 + r)^t
// where r is APY in decimal, t is time in years
var rateDecimal = apyPercent / 100;
var timeInYears = months / 12;
var totalBalance = principal * Math.pow((1 + rateDecimal), timeInYears);
var totalInterest = totalBalance – principal;
// Formatting Results
var formatter = new Intl.NumberFormat('en-US', {
style: 'currency',
currency: 'USD',
minimumFractionDigits: 2,
maximumFractionDigits: 2
});
// Display Results
document.getElementById('display_deposit').innerHTML = formatter.format(principal);
document.getElementById('display_interest').innerHTML = formatter.format(totalInterest);
document.getElementById('display_total').innerHTML = formatter.format(totalBalance);
// Show result section
resultBox.style.display = 'block';
}