/* Interaction Elements */

form.form-container.voluntary-form {
  margin: 5rem auto 0;
  max-width: 700px;
}

form.form-container.contact-form {
  margin: 5rem auto 0;
  max-width: none;
}

input[type=text].text-input {
  border-width: .0625rem;
  border-style: solid;
}

input[type=email].email-input {
  border-width: .0625rem;
  border-style: solid;
}

textarea.textarea-input {
  height: 7rem;
  border-width: .0625rem;
  font-family: 'Archivo', sans-serif;
}

label.label.active {
  color: #88c0bb;
}

/*Radio buttons*/


input[type="radio"] {
  display: none;
}

input[type="radio"] + label:before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  padding: 6px;
  margin-right: 3px;
  background-clip: content-box;
  border: 2px solid #bbb;
  background-color: #e7e6e7;
  border-radius: 50%;
}

input[type="radio"]:checked + label:before {
  background-color: #93e026;
}

 .card .card-body {
     padding: 1.25rem 1.75rem
 }

 .card-body {
     flex: 1 1 auto;
     padding: 1.25rem
 }

 .card .card-title {
     color: #000000;
     margin-bottom: 0.625rem;
     text-transform: capitalize;
     font-size: 0.875rem;
     font-weight: 500
 }

 .card .card-description {
     margin-bottom: .875rem;
     font-weight: 400;
     color: #76838f
 }

 p {
     font-size: 0.875rem;
     margin-bottom: .5rem;
     line-height: 1.5rem
 }


