.card {
  --bs-card-spacer-y: 1rem;
  --bs-card-spacer-x: 0;
  --bs-card-title-spacer-y: 0.5rem;
  --bs-card-border-width: 0;
  --bs-card-border-color: none;
  --bs-card-border-radius: 0;
  --bs-card-inner-border-radius: 0;
  --bs-card-cap-padding-y: 0.5rem;
  --bs-card-cap-padding-x: 1rem;
  --bs-card-cap-bg: rgba(var(--bs-body-color-rgb), 0.03);
  --bs-card-bg: none;
  --bs-card-img-overlay-padding: 1rem;
  --bs-card-group-margin: 0.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: var(--bs-card-height);
  color: #204000;
  font-family: 'Roboto Condensed';
  font-size: 18px;
  font-weight: 300;
  word-wrap: break-word;
  background-color: inherit;
  background-clip: border-box;
  border: 1px solid #ced4da;
  border-radius: 0;
}

.form-control {
  display: block;
  padding: 8px 16px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: #333333;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: initial;
  background-clip: padding-box;
  border: 1px solid #a4a33a;
  border-radius: 0;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  gap: 10px;
  background: none !important;
}

.form-select {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: #333333;
  background-color: inherit;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: .25rem;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  padding: 8px 16px;
  /*height: 56px;*/
}

.form-control::placeholder {
  color: rgba(0,0,0,0.21);
  opacity: 0.5;
  font-size: 18px !important;
}

.form-control:focus {
  color: var(--bs-secondary);
  background-color: inherit;
  border-color: var(--bs-secondary);
  outline: 0;
  /*box-shadow: none;*/
}

.form-select:focus {
  border-color: #333333;
  outline: 0;
  box-shadow: none;
}

.form-group {
  padding-top: 20px;
}

.form-button {
  padding: 16px 24px;
  color: rgb(255,255,255);
  background-color: #d17937;
  font-weight: normal;
  border-style: none;
  font-size: 18px;
  width: 100% !important;
  justify-content: center;
}

