.errors {
  list-style: none;
  margin: 10px 5px;
  position: absolute;
  z-index: 10;
  left: 50%;
  margin-left: 200px;
  margin-top: -45px;
  background: #fae7ea;
  padding: 10px 10px;
  border-radius: 3px;
  border: 1px solid #e1c5c5;
  color: #8d7575;
  width: 260px;
  text-align: center;
  height: fit-content;
}

.has-error label,
.has-error input,
.has-error textarea {
  color: red;
  border-color: red;
}

.list-unstyled li {
  font-size: 13px;
  padding: 4px 0 0;
  color: red;
}

/* RESPONSIVE CSS
-------------------------------------------------- */

@media (max-width: 1000px) {
  .errors {
    position: relative;
    left: 0px;
    width: 100%;
    margin-left: 0px;
    margin-top: 6px;
    margin-bottom: 0rem;
    list-style: none;
    text-align: left;
    padding: 2px 0px;
    font-size: .8em;
    background: inherit;
    color: #f72929;
    border: 0px;
  }
}

@media (max-width: 768px) {
  .modal-dialog {
    width: 90%;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: 0 !important;
    transform: translate(-50%, -50%) !important;
  }
}
