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

body {
  font-family: "Inter", "Segoe UI", Roboto, sans-serif;
  background: #ffffff;
  color: #1e3a8a;
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.main-content {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
  overflow-x: hidden;
  min-height: 0;
  width: 100%;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.02) 0%, rgba(59, 130, 246, 0.02) 100%);
}

.main-content > * {
  width: 100%;
  max-width: 500px;
}

.footer {
  padding: 20px;
  text-align: center;
  background: #f8fafc;
  border-top: 1px solid rgba(59, 130, 246, 0.1);
  flex-shrink: 0;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 14px;
  color: #3b82f6;
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}

.footer-links a:hover {
  color: #1e3a8a;
}

.footer-links a:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background: rgba(59, 130, 246, 0.2);
}

.center-content {
  display: flex;
  align-items: center;
  min-height: 100%;
}
@media (max-width: 480px) {
  .main-content {
    padding: 16px;
  }

  .footer {
    padding: 16px;
  }

  .footer-links {
    gap: 14px;
  }
}

@supports not (height: 100dvh) {
  body {
    height: 100vh;
  }
}
