.savingsGrid {
    display: grid;
    grid-template-columns: 73% 23%;
    align-items: center;
    gap: 35px;
  }
  
  .savingsCard {
    border-radius: 6px;
    padding: 2rem 2rem;
    background-color: #fff;
    border: 1px solid #E3E3E3;
    border-radius: 20px;
    max-width: 100%;
  
  }
  
  .savingsCardGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: baseline;
    gap: 25px;
  }
  
  .savingsResult {
    border: 1px solid #C41425;
    border-radius: 20px;
    padding: 5px;
    background-color: #FFF;
    padding: 20px;
    min-height: 320px;
    text-align: center;
    display: flex;
    align-items: center;
  }
  
  .savingsText .amountText {
    font-size: 20px;
    font-weight: 500;
    color: #000;
  }
  
  /* .savingsText #result {
    color: #003366;
    font-size: 36px;
    font-weight: 500;
  } */
  
  .inputField {
    display: flex;
    align-items: center;
    border: 2px solid #4A90E2;
    border-radius: 5px;
    padding: 4px;
    font-size: 16px;
    font-weight: bold;
    width: 120px;
  }
  
  .inputField span {
    font-weight: bold;
    color: #000;
  }
  
  .inputField input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 10px 10px 5px !important;
    height: 25px !important;
    color: #000;
  }
  
  .inputField input::-webkit-outer-spin-button,
  .inputField input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  
  .goal-label {
    color: #000;
    font-size: 1.6rem;
    font-weight: 400;
    font-family: Lato !important;
  }
  
  .radio-container {
    display: flex;
    justify-content: start;
    align-items: center;
  }
  
  .radio-button {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 10px;
    position: relative;
    align-items: center;
    color: #000;
    font-size: 14px;
    font-weight: 500;
  }
  
  .radio-button input[type="radio"] {
    position: absolute;
    opacity: 0;
  }
  
  .savingsRadio {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #ccc;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
    transform: translateZ(-25px);
    transition: all 0.3s ease-in-out;
  }
  
  .savingsRadio::before {
    position: absolute;
    content: '';
    width: 12px;
    height: 12px;
    top: 2px;
    left: 3px;
    border-radius: 50%;
    background-color: #ed1c24;
    opacity: 0;
    transition: all 0.3sease-in-out;
  }
  
  .radio-button input[type="radio"]:checked+.savingsRadio {
    border-color: #003366;
    transform: translateZ(0px);
    background-color: #fff;
  }
  
  .radio-button input[type="radio"]:checked+.savingsRadio::before {
    opacity: 1;
  }
  
  .savings-needed {
    color: #003366;
    font-size: 36px;
    font-weight: 500;
  }
  
  .no-savings {
    color: #003366;
    font-size: 15px;
    font-weight: 500;
  }
  
  
  @media only screen and (max-width:480px) {
    .savingsGrid {
      display: grid;
      grid-template-columns: 100%;
    }
  
    .savingsCardGrid {
      display: grid;
      grid-template-columns: 1fr;
    }
  
    .savingsResult {
      min-height: 100%;
    }
  }