.my-form {
  counter-reset: number;
  border-radius: 4px;
  border: 1px solid rgb(114, 177, 250);
  background: rgb(235, 241, 248);
  padding: 10px;
}

.my-row {
  padding: 6px 0px;
  display: block;
}

.my-label {
  margin: 6px 0px;
  font-weight: bold;
  display: block;
  font-size: 1rem;
}

.my-label:before {
  counter-increment: number;
  content: counter(number) ". ";
  color: rgb(39, 111, 139);
}

.my-content {
  padding-left: 12px;
}

.my-input {
  padding: 2px 4px;
  font-size: 0.975rem;
  height: unset;
  color: #222224;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s,
    -webkit-box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

.my-input:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 8px rgba(102, 175, 233, 0.6);
}

.my-text {
  padding: 7px 4px;
  font-size: 1rem;
  height: unset;
  color: #555;
  background-color: transparent;
  background-image: none;
  border: none;
}

.my-text:focus {
  border: none;
  outline: 0;
}

input[type="checkbox"].my-input {
  height: 1rem;
}

.my-100 {
  width: 100%;
}

textarea.my-input {
  line-height: 1.5;
  min-width: 80%;
  max-width: 100%;
  min-height: 5rem;
}

.my-help {
  color: rgb(7, 143, 161);
  border-bottom: 1px dashed rgb(228, 110, 110);
  padding-top: 3px;
  margin-left: 20px;
  display: inline-block;
}

.my-help::before {
  font-family: "FontAwesome";
  font-size: 1.1rem;
  content: "\f0a5  ";
  margin-right: 4px;
}

.my-example {
  color: white;
  background-color: rgb(39, 78, 128);
  padding: 4px;
  margin-top: 10px;
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  border-radius: 4px;
  width: 80%;
  line-height: 1.5;
}

.my-example::before {
  color: rgb(39, 78, 128);
  background-color: white;
  font-weight: bold;
  content: "   example  ";
  margin-right: 4px;
}