body {
  display: flex;
  align-items: center;
  justify-content: center;

  height: 100%;

  padding: 24px;

  background-color: #f0f4fd;
}

#login-form {
  display: flex;
  flex-direction: column;

  align-items: center;

  gap: 32px;

  width: 100%;

  padding: 48px 24px;

  .logo-wrapper {
    display: flex;
    flex-direction: column;

    align-items: center;
    gap: 8px;

    .logo-img {
      width: 202px;
      height: 27px;
    }

    .logo-text {
      font-size: 16px;
      font-weight: 700;

      text-align: center;
      letter-spacing: -0.64px;

      color: #000000;
    }
  }

  .input-fields {
    width: 100%;

    .text-field + .text-field {
      margin-top: 8px;
    }
  }

  .message {
    display: flex;

    gap: 4px;

    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: -0.56px;

    color: #383d48;

    .message__icon {
      flex-shrink: 0;
    }
  }
}
