form fieldset {
  border: 0;
  padding: 0;
}
form label {
  display: inline-block;
  font-family: arial;
  margin-bottom: 5px;
}
.form-control {
  width: 100%;
  height: 36px;
  border: solid 1px #b8b8b8;
  border-radius: 5px;
  padding: 0 10px;
  box-sizing: border-box;
}
textarea.form-control {
  height: auto;
}
.form-control.sm {
  width: 100px !important;
}
.form-control.md {
  width: 200px !important;
}
.form-control:focus,
.form-control:focus-visible {
  border: solid 1px red;
}
.form-group {
  margin-bottom: 20px;
}
form button {
  background-color: blue;
  color: #fff;
  padding: 10px 20px;
  border: 0;
  border-radius: 5px;
}
.alert-error {
  padding: 10px;
  border: solid 2px #ffeeee;
  color: red;
  border-radius: 5px;
  margin: 20px 0;
  background: #fdf7f7;
}
.alert-success {
  padding: 10px;
  border: solid 2px #eefce6;
  color: #2eb92b;
  border-radius: 5px;
  margin: 20px 0;
  background: #f9fff4;
}
.d-flex {
  display: flex;
}
.text-right {
  text-align: right;
}
