.ft-form{
    background-color: #BAE363;
    padding: 20px;
    border-radius: 20px;
}

.ft-form h2{
    margin-bottom: 20px;
    
}
 .switch-toggle-radio {
  --width: 260px;
  /* --height: 50px;
  --offset: 2px;
  --radius: 4px; */

  position: relative;
  width: var(--width);
  height: var(--height);
  padding: var(--offset);
  background:#fff;
  
    border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  position: relative;
}

.switch-toggle-radio input[type="radio"] {
  display: none;
}

.switch-toggle-label {
  flex: 1;
  text-align: center;
  z-index: 2;
  cursor: pointer;
  padding: 10px 0;
  transition: color 0.3s;
  color:#00715C;
  position: relative;
      border-radius: 20px;
}

.switch-toggle-radio input#radio-one-time:checked + label[for="radio-one-time"],
.switch-toggle-radio input#radio-monthly:checked + label[for="radio-monthly"] {
  color: #fff;
  background-color: #00715C;
}

.switch-toggle-radio .switch-bg {
  content: "";
  position: absolute;
  top: var(--offset);
  left: var(--offset);
  width: calc(50% - var(--offset));
  height: calc(100% - var(--offset) * 2);
  background: #fff;
      border-radius: 20px;
  border-radius: calc(var(--radius) - var(--offset));
  box-shadow: 0px 10px 20px rgba(16, 39, 68, 0.1);
  transition: left 250ms cubic-bezier(0.93, 0.26, 0.07, 0.69);
  z-index: 1;
}

/* Move switch background when 'monthly' is checked */
.switch-toggle-radio input#radio-monthly:checked ~ .switch-bg {
  left: calc(50% + var(--offset));
}
.form-check {
    margin-bottom: 32px;
    padding-left: 0;
    
}
.btn-secondary{
    background-color: #00715C;
    margin: 5px;
    padding: 5px 20px;
    font-weight: 600;
    font-size: 25px;
    width: 131px;
    margin-right: 25px;
}

.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
    
    background-color: #fff;
    color:#00715C;   
}

.form-check input[type="text"] {
    width: 100%;
    border-radius: 25px;
    padding: 10px 20px;
}

.form-btn {
    width: 100%;
    border-radius: 25px;
    padding: 15px 20px;
    background-color: #00715c;
}