.errorCatcher {
  background-image: url("https://s3-ap-southeast-1.amazonaws.com/haptikappimg/content/sdk-background.png");
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  &Card {
    max-width: 600px;
    width: 100%;
    border: 1px solid #EEE;
    border-radius: 8px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);

    &Icon {
      width: 64px;
      height: 64px;
      margin-bottom: 8px;
    }

    &Title {
      font-size: 24px;
      font-weight: 600;
      color: #333;
      margin-bottom: 4px;
    }

    &Subtitle {
      margin-bottom: 16px;
      text-align: center;
    }

    &Form {
      width: 100%;
      margin-bottom: 8px;
    }

    &FormInput {
      width: 100%;
      margin-bottom: 0;
    }

    &FormSubmit {

    }
  }
}