:root {
  --baio-navy: #001f5e;
  --baio-blue: #0b4475;
  --baio-orange: #f47c22;
  --baio-surface: #f5f8fc;
}

.module-page {
  min-height: 100vh;
  margin: 0;
  color: #17212f;
  background: var(--baio-surface);
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
}

.module-header {
  padding: 18px 0;
  background: #fff;
  border-bottom: 1px solid #dce5ef;
}

.module-brand img {
  display: block;
  max-height: 52px;
  width: auto;
}

.module-main {
  display: grid;
  min-height: calc(100vh - 150px);
  padding: 48px 20px;
  place-items: center;
}

.module-panel {
  width: min(100%, 620px);
  padding: 48px;
  text-align: center;
  background: #fff;
  border: 1px solid #dce5ef;
  border-top: 5px solid var(--baio-orange);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(0, 31, 94, 0.12);
}

.module-label {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--baio-blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.module-icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  color: #fff;
  background: var(--baio-navy);
  border-radius: 50%;
  font-size: 26px;
  place-items: center;
}

.module-panel h1 {
  margin: 0 0 14px;
  color: var(--baio-navy);
  font-size: 32px;
  font-weight: 800;
}

.module-panel p {
  max-width: 470px;
  margin: 0 auto 28px;
  color: #526274;
  font-size: 16px;
  line-height: 1.7;
}

.module-back {
  padding: 12px 24px;
  color: #fff;
  background: var(--baio-orange);
  border: 0;
  border-radius: 5px;
  font-weight: 700;
}

.module-back:hover,
.module-back:focus {
  color: #fff;
  background: #d96412;
}

.module-footer {
  padding: 18px 20px;
  color: #64748b;
  font-size: 13px;
  text-align: center;
}

@media (max-width: 575px) {
  .module-main {
    padding: 28px 16px;
  }

  .module-panel {
    padding: 36px 24px;
  }

  .module-panel h1 {
    font-size: 26px;
  }
}
