/* Alertas */
.alert {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}

.alert-error {
  background-color: #fee2e2;
  color: var(--danger);
}

.alert i {
  width: 1.25rem;
  height: 1.25rem;
}
