* {
    margin: 0;
    padding: 0;
    color: white;
}

.container {
    background: rgb(7,22,53);
    background: linear-gradient(45deg, rgba(32,3,3,1) 0%, rgba(113,57,62,1) 50%, rgba(32,3,3,1) 100%);
    height: 100%;
    padding: 16px;
}

input {
    padding: 4px;
    font-size: 1.3rem;
    text-align: center;
    width: 150px;
    border-radius: 8px;
    background: #5e5a5a;
    border: 1px solid white;
}

table {
    width: 100%;
    text-align: center;
}

label {
    text-align: center;
}

#mortgageForm {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.key-values {
    display: flex;
    flex-direction: column;
}

#totalInterestPaid {
    padding: 4px;
    font-size: 1.3rem;
    text-align: center;
    width: 130px;
    border-radius: 8px;
    background: black;
    border: 1px solid white;
    padding-left: 12px;
}

@media (max-width: 600px) {
    #mortgageChart {
        min-height: 600px;
    }
}