.form-label {
    margin-bottom: .5rem;
  }

  /* Placeholder */
  .form-control::-webkit-input-placeholder,
  .form-control::-moz-placeholder,
  .form-control:-ms-input-placeholder,
  .form-control::-ms-input-placeholder,
  .form-control::placeholder {
    color: var(--black-lgt);
    opacity: 1;
  }

  /* Form group */
  .form-group {
    margin-bottom: 0;
    padding: 25px 15px 5px 15px !important;
    background-color: var(--bg-forms);
    position: relative;
  }
  .form-group:last-child {
    padding: 25px 15px 30px 15px !important;
  }



  /* Checkbox / Radio Inputs */
  form input[type="checkbox"],
  form input[type="radio"],
  .form-check .form-check-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    outline: none;
    font-size: 1rem;
    padding-right: 5px;
    position: absolute;
    left: -2000em;
  }

  /* Default Icon before Checkbox */
  form input[type="checkbox"]::before {
    font-family: "fontello";
    content: '\f096';
    font-style: normal;
    font-weight: normal;
    speak: never;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin: 0 .2em;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  /* Labels */
  .checkbox label,
  .radio label {
    text-transform: none;
  }
  .form-check label {
    text-transform: none;
    padding-bottom: 6px;
  }
  .form-check-inline label {
    text-transform: uppercase;
  }
  .form-check-inline label:before {
    content: "\f096";
    font-family: 'fontello';
    padding-right: 6px;
  }

  /* Label with Checkbox / Radio */
  form input[type='checkbox'] + label,
  form input[type='radio'] + label {
    padding-left: 35px;
    padding-right: 35px;
    line-height: 1.5em;
  }
  form input[type='checkbox'] + label::before,
  form input[type='radio'] + label::before {
    font-family: "fontello";
    font-size: 18px;
    cursor: pointer;
    content: '\f096';
    display: inline-block;
    position: relative;
    left: -29px;
    top: 2px;
    margin-right: -18px;
  }

  /* Checked State */
  form input[type='checkbox']:checked + label:before,
  form input[type='radio']:checked + label:before {
    content: "\e800";
    margin-right: -18px;
  }
  form input[type='checkbox']:checked::before,
  form input[type='radio']:checked::before {
    font-family: "fontello";
    font-size: 18px;
    cursor: pointer;
    content: "\f046";
    display: inline-block;
  }

  /* Disabled Inputs */
  .form-control:disabled,
  .form-control[readonly] {
    background-color: #e9ecef;
    opacity: 1;
  }

  /* Special for select + IE */
  select.form-control:focus::-ms-value {
    color: var(--black-lgt);
    background-color: #fff;
  }

ul.powermail-errors-list {
    position: relative;
    top: 0;
    left: 0px;
    color: var(--red);
    display: block;
    width: 100%;
    padding-left: 0;
  }
 ul.powermail-errors-list li {
    display: block;
    font-size: 0.9rem;
    padding: 3px 0 3px 0px;
    color: red;
  }


 .login legend {
    font-family: 'ubuntu_condensedregular';
    font-weight: normal;
    line-height: 1.2em;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 24px;
    color: var(--green);
    text-align: center;
    padding: 12px 12px 12px 12px;
  }
  @media screen and (min-width: 768px) {
    .login legend {
      font-size: 28px;
    }
  }

  .typo3-messages {
    list-style: none;
    margin: 0;
    padding:0;
  }
  p.alert-message {
    padding-bottom: 0;
    margin-bottom: 0;
  }

