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

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #dce8f5;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.box {
  background-color: #ffffff;
  border-radius: 10px;
  border-top: 5px solid #005ca5f2;
  box-shadow: 0 4px 20px rgba(0, 92, 165, 0.12);
  padding: 40px 48px 36px;
  max-width: 420px;
  width: 90%;
  text-align: center;
}

.box__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #dce8f5;
  color: #005ca5f2;
  margin-bottom: 20px;
}

.box__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #005ca5f2;
  margin-bottom: 16px;
  line-height: 1.4;
}

.box__text {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.6;
}

.box__link {
  color: #005ca5f2;
  text-decoration: underline;
}

.box__link:hover {
  color: #003f7a;
}
.logo {
  margin-top: 32px;
  display: block;
}
.line {
  margin-top: 32px;
  height: 1px;
  width: 100%;
  background-color: #d5d5d5;
}
.links {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 36px;
}
.links a {
  color: #005ca5f2;
  text-decoration: none;
}
