.construction {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: #fff;
  color: #0A0A0A;
  font-family: system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  text-align: center;
  padding: 20px;
}
.box {
  max-width: 500px;
}
h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}
p {
  margin: 10px 0;
  color: #374151;
}
.form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
}
input {
  padding: 12px;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  font-size: 1rem;
}
button {
  background: #0FA958;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}
button:hover {
  background: #0c8c49;
}
.small {
  font-size: 0.8rem;
  color: #6B7280;
  margin-top: 20px;
}
