body {
  font-family: Mulish, sans-serif;
}

.card {
  background-color: rgb(115, 235, 166) !important;
  border: 1px none rgb(0, 0, 0);
  border-style: dashed;
  padding: 0px;
  color: rgb(0,0,0);
  max-width: 30%;
  border-radius: 0;
  border-color: rgb(160, 160, 160);
}

.card-container .card .card-body p {
  font-size: 12px;
}

.green-card {
  background-color: rgb(115, 235, 166);
  border-radius: 0px;
  border-color: rgb(160, 160, 160);
  border-style: dashed;
  border-width: 1px;
  padding: 14px;
  /*max-width: 230px;*/
}

.green-card p {
  font-size: 14px;
}

.green-card h4 {
  font-weight: 600;
}

.green-card .bs-icon svg {
  fill: #000;
}

.fit-cover {
  object-fit: cover;
}

form {
  width: 100%;
}

form .form-component {
  display: flex;
  flex-direction: column;
  max-width: 376px;
}

form label {
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0px;
}

form input {
  margin: 0px;
  border-radius: 5px;
  border: 1px solid rgb(222, 222, 222);
  color: rgb(80, 80, 80);
  font-size: 14px;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0px;
  padding: 16px;
}

form button {
  border: 1px none rgb(64, 64, 64);
  padding: 16px;
  text-align: center;
  cursor: pointer;
  background: rgb(115, 235, 166);
  color: rgb(0, 0, 0);
  line-height: 24px;
  letter-spacing: 0px;
  font-size: 16px;
  font-weight: 800;
  border-radius: 5px;
  min-width: 245px;
}

#formulario-success-message {
  display: none;
    background: rgb(255, 255, 255);
    border-radius: 5px;
    border: 1px solid rgb(216, 216, 216);
    color: rgb(80, 80, 80);
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    padding: 16px;
    text-align: center;
}

.bs-icon {
  --bs-icon-size: .75rem;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-size: var(--bs-icon-size);
  width: calc(var(--bs-icon-size) * 2);
  height: calc(var(--bs-icon-size) * 2);
  color: var(--bs-primary);
}

.bs-icon-xs {
  --bs-icon-size: 1rem;
  width: calc(var(--bs-icon-size) * 1.5);
  height: calc(var(--bs-icon-size) * 1.5);
}

.bs-icon-sm {
  --bs-icon-size: 1rem;
}

.bs-icon-md {
  --bs-icon-size: 1.5rem;
}

.bs-icon-lg {
  --bs-icon-size: 2rem;
}

.bs-icon-xl {
  --bs-icon-size: 2.5rem;
}

.bs-icon.bs-icon-primary {
  color: var(--bs-white);
  background: var(--bs-primary);
}

.bs-icon.bs-icon-primary-light {
  color: var(--bs-primary);
  background: rgba(var(--bs-primary-rgb), .2);
}

.bs-icon.bs-icon-semi-white {
  color: var(--bs-primary);
  background: rgba(255, 255, 255, .5);
}

.bs-icon.bs-icon-rounded {
  border-radius: .5rem;
}

.bs-icon.bs-icon-circle {
  border-radius: 50%;
}