body {
  display: flex;
  flex-direction: column;

  height: 100%;

  background-color: #f0f4fd;
}

.message-wrapper {
  flex-grow: 1;

  display: flex;
  flex-direction: column;
  gap: 32px;

  justify-content: center;
  align-items: center;

  padding: 24px;

  .title {
    font-weight: 500;
    font-size: 20px;

    line-height: 20px;
    letter-spacing: -0.8px;
  }

  .messages {
    display: flex;
    gap: 8px;

    flex-direction: column;
    align-items: center;

    font-weight: 400;
    font-size: 15px;

    line-height: 15px;
    letter-spacing: -0.6px;
    text-align: center;

    color: #383d48;

    .text--warn {
      font-weight: 500;
    }
  }
}
