/* Alerts for forms */
.c-alert {
  display: none;
  padding: 15px;
  border-radius: 4px;
  margin-top: 20px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.c-alert--show {
  display: block;
  animation: fadeIn 0.5s;
}

.c-alert--success {
  background-color: rgba(25, 135, 84, 0.1);
  color: #198754;
  border: 1px solid rgba(25, 135, 84, 0.2);
}

.c-alert--error {
  background-color: rgba(220, 53, 69, 0.1);
  color: #dc3545;
  border: 1px solid rgba(220, 53, 69, 0.2);
}
