<style>.

nomination-container {
  max-width: 550px;
  margin: 2rem auto;
  padding: 2.5rem;
  background: #fdfbf7; /* Soft, warm tint */
  border: 1px solid #e6e1da;
  border-radius: 4px;
  font-family: inherit;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeIn 0.4s ease-in-out;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #2c2a29;
}

input, select, textarea {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1.5rem;
  border: 1px solid #ccc7bf;
  background: #fff;
  border-radius: 2px;
  font-size: 1rem;
  box-sizing: border-box;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: #2c2a29; /* Dark, sharp accent focus */
}

.btn-group {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

button {
  padding: 0.8rem 1.5rem;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s ease;
}

.btn-next, .btn-submit {
  background: #2c2a29;
  color: #fff;
  margin-left: auto; /* Pushes to the right if standalone */
}

.btn-prev {
  background: #e6e1da;
  color: #2c2a29;
}

button:hover {
  opacity: 0.9;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }

}  </style>