* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #0e0f14;
  color: #fff;
  font-family: system-ui, sans-serif;
}
.page-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 7%;
}
input, textarea, select, button {
  font-family: system-ui, sans-serif;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
textarea {
  -webkit-appearance: none;
  appearance: none;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: #fff;
}
.site-footer {
  margin-top: 60px;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 32px 7% 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.site-footer-top {
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-footer-logo {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.3px;
}
.site-footer-logo-dot {
  color: #e8692a;
}
.site-footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}
.site-footer-dmca {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  line-height: 1.6;
  max-width: 900px;
}
