/* ---------- COMPONENTS: ALERTS ---------- */
.app-verify-banner {
  border-bottom: 1px solid rgba(251, 191, 36, 0.42);
  background: rgba(146, 64, 14, 0.26);
  color: #fde68a;
  padding: 10px 16px;
  font-size: 13px;
}

.app-flash {
  margin: 0 0 12px 0;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid transparent;
  border-left-width: 4px;
  font-size: 13px;
  line-height: 1.45;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.16);
  animation: flash-enter 180ms ease-out;
}

.app-flash--notice {
  border-color: #bae6fd;
  border-left-color: #0284c7;
  background: #f0f9ff;
  color: #0c4a6e;
}

.app-flash--alert {
  border-color: #fecdd3;
  border-left-color: #dc2626;
  background: #fff1f2;
  color: #7f1d1d;
}

body.signed-in-app .app-flash {
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.16);
}

