/* calculator css */

.savings-calculator {
    position: relative;
    max-width: 400px;
    padding: 2rem;
    border-radius: 14px;
    background-color: #fff;
    box-shadow: 4px 0 54px 3px rgb(11 38 63 / 7%);
}

.savings-calculator fieldset {
    border: none;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.calculator-title {
    font-size: 18px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 2rem;
}

.calculation-result {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex-direction: column;
}

.calculation-result .value {
    font-size: 40px;
    font-weight: bold;
}

.calculation-result p {
    margin: 0;
}

.demo-btn {
    display: block;
    max-width: 360px;
    margin: 2rem auto 0;
    padding: 1em 3em;
    border-radius: 100px;
    -webkit-transition: .2s;
    transition: .2s;
    font-family: Basisgrotesque,sans-serif;
    color: #fff;
    font-size: 21px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid #0b263f;
    background-color: transparent;
    color: #0b263f;
}

.demo-btn a {
    text-decoration: none;
}