body {
  margin: 0;
  font-family: 'Playfair Display', serif;
  background: #f6efe6;
  color: #3a2f2f;
}

.container {
  max-width: 420px;
  margin: auto;
  padding: 30px 20px;
  text-align: center;
}

h1 {
  font-size: 28px;
  margin-bottom: 5px;
}

.subtitle {
  color: #777;
  margin-bottom: 25px;
}

button {
  display: block;
  width: 100%;
  padding: 14px;
  margin: 10px 0;
  border: none;
  background: #8b6b3e;
  color: white;
  font-size: 15px;
  border-radius: 8px;
  cursor: pointer;
}

button:hover {
  background: #72552d;
}

input {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-family: inherit;
}

.meter {
  width: 100%;
  height: 10px;
  background: #ddd;
  border-radius: 5px;
  margin-top: 25px;
}

#progress {
  height: 10px;
  width: 0%;
  background: #8b6b3e;
  border-radius: 5px;
  transition: width 0.3s ease;
}

#progress-text {
  margin-top: 10px;
  font-size: 14px;
  color: #555;
}
