#error-message {
  border: 1px solid #333;
  margin: 20px;
  padding: 10px;
  background-color: #fff;
  color: #333;
  font-family: sans-serif;
  font-size: 14px;
  display: flex;
  border-radius: 3px;
  width: fit-content;
  box-shadow: 1px 1px 10px 0px #ccc;
}

#error-message:before {
  content: "!";
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  background-color: #f90;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  width: 25px;
  height: 25px;
}