form[name='resetPasswordsPage'] .password-field-wrapper input[type='password'] {
  transition: .4s;
  transition-property: box-shadow, background-color, color, border;
}

form#resetPasswordsPage div.dataTables_wrapper {
  overflow-x: inherit;
}

.password-field-wrapper input[type='password'].not-equal {
  background-color: rgba(150, 70, 10, 0.1);
  color: rgb(50, 0, 0);
  box-shadow: 0 0 2px 1px rgba(150, 70, 10, 0.8);
  border-color: red;
}

.password-field-wrapper input[type='password'].equal {
  background-color: rgba(10, 235, 125, 0.1);
  color: rgb(0, 100, 0);
  box-shadow: 0 0 2px 1px rgba(10, 235, 125, 0.8);
  border-color: green;
}

.password-field-wrapper input[type='password']:focus.not-equal {
  background-color: rgba(150, 70, 10, 0.1);
  color: rgb(50, 0, 0);
  box-shadow: 0 0 2px 1px rgba(150, 70, 10, 0.8);
  border-color: red;
}

.password-field-wrapper input[type='password']:focus.equal {
  background-color: rgba(10, 235, 125, 0.1);
  color: rgb(0, 100, 0);
  box-shadow: 0 0 2px 1px rgba(10, 235, 125, 0.8);
  border-color: green;
}

.alert {
  margin-bottom: 0;
  width:100%;
}