* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  height: 100%;
  font-family: 'Inter', sans-serif;
  color: #143776;
}
body {
  width: 100%;
  height: 100%;
  background: url(bg.png) no-repeat center/750px, #f5f9ff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card {
  background: #fff;
  box-shadow: 0px 6px 20px rgba(20, 55, 118, 0.05);
  border-radius: 4px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 414px;
  padding: 40px;
}
.card__logo {
  margin-bottom: 20px;
  width: 160px;
  height: 38px;
}
.card__title {
  font-family: Inter;
  font-weight: bold;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: 0.0075em;
  margin-bottom: 32px;
}
.card__description {
  font-family: Inter;
  font-size: 14px;
  line-height: 143%;
  text-align: center;
  letter-spacing: 0.018em;
}
.red-warning {
  color: #f6655a;
  font-weight: bold;
}
