@font-face {
  font-family: "Nunito";
  src: url("../fonts/Nunito-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

.message.success {
  background-color: lightgreen;
  border-color: green;
  color: black;
}
.message.error {
  background-color: coral;
  border-color: red;
  color: white;
}
.message.warning {
  background-color: orange;
  border-color: orangered;
  color: white;
}
.message.info, .message.debug {
  background-color: lightblue;
  border-color: blue;
  color: darkblue;
}

.captcha-block {
    margin-top: 1em;
}

.captcha-widget {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
}

.captcha-widget img {
    border: 1px solid #ccc;
    max-width: 200px;
}

.captcha-widget input {
    padding: 8px;
    border: 1px solid #aaa;
    border-radius: 0.375rem;
}
