* {
  box-sizing: border-box;
}

.monitoreal-calc-wrapper {
  padding: 0px 0px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  display: flex;
  justify-content: center;
}

.card {
  width: 100%;
  max-width: 720px;
}



.eyebrow {
  margin: 0 0 8px;
  color: #4caf50;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.monitoreal-calc-wrapper h1 {
  margin: 0 0 16px;
  color: #1e2551;
  font-size: 34px;
  font-weight: 800;
}

.subtitle {
  margin: 0 0 32px;
  color: #6b7280;
  font-size: 16px;
  line-height: 1.5;
  max-width: 560px;
}

.field {
  margin-bottom: 20px;
}

.field-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.field-header label {
  color: #1e2551;
  font-weight: 700;
  font-size: 15px;
}

.field-header .value {
  color: #1e2551;
  font-weight: 700;
  font-size: 16px;
  min-width: 32px;
  text-align: right;
}

input[type="range"] {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: #e0e2e8;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
}

input[type="range"]::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(
    to right,
    #1e2551 var(--fill, 0%),
    #e0e2e8 var(--fill, 0%)
  );
}

input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #1e2551;
  cursor: pointer;
  margin-top: -7px;
  border: 3px solid #ffffff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

input[type="range"]::-moz-range-track {
  height: 6px;
  border-radius: 3px;
  background: #e0e2e8;
}

input[type="range"]::-moz-range-progress {
  height: 6px;
  border-radius: 3px;
  background: #1e2551;
}

input[type="range"]::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #1e2551;
  border: 3px solid #ffffff;
  cursor: pointer;
}

.assumption {
  margin: 0 0 28px;
  color: #4b5563;
  font-size: 15px;
}

.result-box {
  background: #1e2551;
  border-radius: 8px;
  padding: 20px;
  color: #ffffff;
}

.result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 15px;
}

.result-row .amount {
  font-weight: 700;
}

.result-box hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin: 12px 0 5px;
}

.total {
  text-align: center;
}

.total-amount {
  color: #73b738;
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 8px;
}

.saved-word {
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
}

.total-label {
  color: #c7c9e0;
  font-size: 15px;
}

.disclaimer {
  margin: 10px 0 0 !important;
  color: #9ca3af;
  font-size: 13px;
  line-height: 1.5;
}

