/* CARD */
.card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,.08);
}

/* INPUT */
.input {
  width: 100%;
  border-radius: .75rem;
  border: 1px solid #e2e8f0;
  padding: .75rem;
}

/* LABEL */
.label {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #64748b;
  display: flex;
  gap: .5rem;
}

/* BUTTON */
.btn {
  background: #e2e8f0;
  padding: .75rem 1.25rem;
  border-radius: .75rem;
  font-weight: 500;
  transition: .2s;
}
.btn:hover { background: #cbd5f5 }

/* BADGE */
.badge {
  font-size: .75rem;
  background: #eef2ff;
  padding: .25rem .75rem;
  border-radius: 999px;
}

/* ANIMATION */
.animate-card {
  animation: fadeSlide .6s ease-out both;
}
@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-item {
  animation: fadeItem .35s ease-out both;
}
@keyframes fadeItem {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-exit {
  animation: exitItem .25s ease-in forwards;
}
@keyframes exitItem {
  to { opacity: 0; transform: translateX(20px); }
}

/* TOAST */
.toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #16a34a;
  color: white;
  padding: .75rem 1.25rem;
  border-radius: .75rem;
  font-size: .875rem;
  box-shadow: 0 5px 15px rgba(0,0,0,.2);
  animation: toastIn .4s ease-out;
  z-index: 50;
}
.toast.error { background: #dc2626; }
.hidden { display: none }

@keyframes toastIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
