@font-face {
  font-family: "Futura PT";
  font-style: normal;
  font-weight: 100 400;
  font-display: swap;
  src: url("../fonts/FuturaPT-Book.woff2") format("woff2");
}

@font-face {
  font-family: "Futura PT";
  font-style: normal;
  font-weight: 500 900;
  font-display: swap;
  src: url("../fonts/FuturaPT-Demi.woff2") format("woff2");
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background-color: #f5f5f5;
  color: rgba(0, 0, 0, 0.85);
  font-family: "Futura PT", "Chinese Quote", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei",
    "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  line-height: 20px;
}

.card {
  width: 100%;
  max-width: 480px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.card__header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 24px;
  background: #001226;
}

.card__logo {
  width: 185px;
  height: auto;
}

.card__body {
  padding: 40px 40px 44px;
  text-align: center;
}

.card__title {
  margin: 0 0 16px;
  font-weight: 600;
  font-size: 22px;
  line-height: 28px;
  color: #001226;
}

.card__message {
  margin: 0;
  font-size: 15px;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.65);
}

.footer {
  margin-top: 24px;
  font-size: 13px;
  line-height: 20px;
  color: rgba(0, 0, 0, 0.45);
  text-align: center;
}

@media (max-width: 520px) {
  .card__body {
    padding: 32px 24px 36px;
  }

  .card__logo {
    width: 150px;
  }
}
