.success-box {
  background: #e3f8e6;
  border-left: 5px solid #2f8f46;
  padding: 15px;
  margin-bottom: 20px;
  font-size: 1rem;
  color: #1a6b31;
  /*border-radius: 10px;*/
  animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}


.error-box {
  background: #ffe5e5;
  border-left: 5px solid #d93030;
  padding: 15px;
  margin-bottom: 20px;
  font-size: 1rem;
  color: #b91c1c;
  animation: fadeIn 0.5s ease-out;
}
