body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: #0a0a0a;
  color: #fff;
  font-family: sans-serif;
  padding: 20px;
  text-align: center;
}

.propose-container {
  max-width: 400px;
  width: 100%;
  background: #111;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

label {
  text-align: left;
  font-size: 14px;
  color: #ccc;
}

input {
  padding: 10px 12px;
  border-radius: 8px;
  border: none;
  outline: none;
  font-size: 14px;
}

button[type="submit"] {
  margin-top: 12px;
  padding: 12px;
  background: #4fc3f7;
  color: #000;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}

button[type="submit"]:hover {
  background: #38b2f1;
}

.info {
  font-size: 12px;
  color: #888;
  margin-top: 10px;
}

a {
  color: #4fc3f7;
  text-decoration: none;
  display: block;
  margin-top: 12px;
}

a:hover {
  text-decoration: underline;
}
