/* Form Styles - A */
.form-style-a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 96%;
}

/* One Field per row */
.form-style-a .all-fields-disp {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.form-style-a .field-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  width: 99%;
  font-size: small;
  padding-top: 5px;
  padding-bottom: 5px;
  margin: 0;
  margin-bottom: 16px;
  /*border-bottom: 1px solid #e8e8e8;*/
}

/* Additional stles */
.field-wrapper .field-error {
  color: #9a1515;
}
.field-wrapper .non-field-error {
  color: #9a1515;
}

.form-style-a .all-fields-disp .label-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  word-wrap: break-word;
  font-size: 12px;
  font-weight: bold;
  font-style: italic;
  cursor: default;
  width: 25%;
  text-align: end;
}

.form-style-a .all-fields-disp .field-with-help-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  word-wrap: break-word;
  font-size: 13px;
  width: 100%;
  text-align: start;
  margin-left: 16px;
}

/* Input and text-are common */
.form-style-a .all-fields-disp input,
textarea {
  height: 30px;
  padding: 5px 6px;
  margin-top: 0;
  vertical-align: middle;
  font-family: 'Roboto', 'Lucida Grande', Verdana, Arial, sans-serif;
  font-weight: normal;
  font-size: 13px;
  width: 100%;
  background: inherit;
  color: inherit;
}

.form-style-a .all-fields-disp .help-text {
  margin: 0;
  padding: 0;
  font-size: 11px;
  color: #666;
}

/* input only*/
.form-style-a .all-fields-disp input {
  border: none;
  border-bottom: 1px solid #666;
}

/* text-are only*/
.form-style-a .all-fields-disp textarea {
  height: 250px;
  border: 1px solid #666;
  border-radius: 4px;
}
