* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #1a1a1a;
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
.container { max-width: 720px; margin: 0 auto; padding: 0 20px; width: 100%; }

.header {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  padding: 16px 0;
}
.brand { display: inline-flex; align-items: center; }
.brand__img { height: 32px; width: auto; display: block; }

.main { flex: 1; display: flex; align-items: flex-start; justify-content: center; padding: 40px 0 60px; }

.formWrap {
  width: 100%;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px 28px;
}
.formWrap__title {
  font-size: 22px;
  font-weight: 800;
  color: #0b0b0c;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.formWrap__desc {
  font-size: 14px;
  color: #6b6f76;
  margin-bottom: 24px;
  line-height: 1.5;
}
.formWrap__form {
  min-height: 200px;
}

.footer {
  background: #fff;
  border-top: 1px solid #e5e7eb;
  padding: 16px 0;
  text-align: center;
}
.footer__copy {
  font-size: 12px;
  color: #9ca3af;
}

@media (max-width: 520px) {
  .formWrap { padding: 24px 16px; border-radius: 12px; }
  .formWrap__title { font-size: 18px; }
}
