* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family:
    'Source Sans 3',
    'Source Sans Pro',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Arial,
    sans-serif;
  color: rgb(20, 20, 20);
  background: rgb(0, 0, 0);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.page {
  position: relative;
  width: 100%;
  min-height: 100%;
  margin: 0 auto;
  background: linear-gradient(180deg, rgb(61, 115, 219) 0%, rgb(117, 164, 255) 100%);
}

.header {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  display: block;
  width: 216px;
  height: 40px;
}

.logo img {
  width: 216px;
  height: 40px;
}

.content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 291px;
}

.card {
  width: 476px;
  background: rgb(255, 255, 255);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
}

.card-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  background: rgb(236, 242, 255);
  border: 1px solid rgb(195, 215, 255);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon img {
  width: 24px;
  height: 24px;
}

.card-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  color: rgb(20, 20, 20);
  margin-bottom: 12px;
}

.card-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  color: rgb(89, 89, 89);
}
