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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  background: #f5f5f7;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.container {
  background: white;
  border-radius: 8px;
  padding: 64px 48px;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e5e5;
  text-align: center;
}

h1 {
  color: #1d1d1f;
  font-size: 32px;
  margin-bottom: 16px;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.subtitle {
  color: #6e6e73;
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 48px;
}

.info-box {
  background: #f5f5f7;
  border-left: 3px solid #0071e3;
  padding: 20px 24px;
  margin: 32px 0;
  text-align: left;
  border-radius: 4px;
}

.info-title {
  font-weight: 600;
  color: #1d1d1f;
  font-size: 15px;
  margin-bottom: 8px;
}

.info-text {
  color: #6e6e73;
  font-size: 14px;
  line-height: 1.6;
}

.footer {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #e5e5e5;
}

.footer-text {
  color: #86868b;
  font-size: 13px;
}
