/* ===========================
   BASE
   =========================== */

body {
  margin: 0;
  padding: 0;
  background: #0f0f0f;
  color: #eaeaea;
  font-family: Arial, Helvetica, sans-serif;
}

.container {
  width: 80%;
  max-width: 900px;
  margin: 40px auto;
}

h1 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #eaeaea;
}

p.subline {
  color: #999;
  margin-top: -10px;
  margin-bottom: 30px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

input,
textarea {
  background: #1a1a1a;
  border: 1px solid #333;
  padding: 12px;
  border-radius: 6px;
  color: #eaeaea;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

button {
  background: #333;
  color: #eaeaea;
  padding: 12px 18px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s ease, transform 0.1s ease;
}

button:hover {
  background: #555;
}