30 lines
560 B
CSS
30 lines
560 B
CSS
|
|
body {
|
|
font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
background-color: #f8f9fa;
|
|
}
|
|
|
|
.hero {
|
|
background: linear-gradient(45deg, #007bff, #82baff);
|
|
color: white;
|
|
padding: 4rem 0;
|
|
text-align: center;
|
|
}
|
|
|
|
.calculator-card {
|
|
background-color: #ffffff;
|
|
border-radius: 0.5rem;
|
|
padding: 2rem;
|
|
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.form-label {
|
|
font-weight: 500;
|
|
}
|
|
|
|
#monthlyPayment {
|
|
font-size: 2rem;
|
|
font-weight: bold;
|
|
color: #007bff;
|
|
}
|