

  /* Messages */
  .alert-messages {
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    margin: 0;
    margin-bottom: 1rem;

    .message {
      width: 100%;
      padding: 0.5rem;
      border-radius: 0.5rem;

      &.message--error {
        background-color: #f8d7da;
        --color: #842029;
        /* border: 1px solid #842029; */
      }

      &.message--warning {
        background-color: #fff3cd;
        --color: #664d03;
        /* border: 1px solid #ffecb5; */
      }

      &.message--status {
        background-color: #d1e7dd;
        --color: #0f5132;
        /* border: 1px solid #badbcc; */
      }
    }
  }
