/* ================================
   ATTENTION INFO CARD
================================ */

.wallet-topup-alert-attention {
  background: linear-gradient(135deg, #6ec6f3, #4fa3e3);
  border-radius: 12px;
  padding: 16px 18px;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Layout */
.wallet-topup-alert-attention .alert-content {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

/* Icon */
.wallet-topup-alert-attention .alert-icon {
  background: #e63946;
  color: white;
  font-size: 1.2rem;
  width: 36px;
  height: 36px;
  border-radius: 8px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
}

/* Text container */
.wallet-topup-alert-attention .alert-text {
  font-size: 0.85rem;
  line-height: 1.5;
}

/* ATTENTION title */
.wallet-topup-alert-attention .alert-title {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

/* Paragraphs */
.wallet-topup-alert-attention p {
  margin: 0 0 6px;
}

/* NOTE section */
.wallet-topup-alert-attention .alert-note {
  margin-top: 6px;
  font-size: 0.82rem;
}

/* NOTE label */
.wallet-topup-alert-attention .note-label {
  color: #ff4d4d;
  font-weight: 700;
}

/* Highlight MTN text */
.wallet-topup-alert-attention .alert-note {
  color: #ffd84d;
}

/* ================================
   ICON ATTENTION ANIMATION
================================ */

/* Bounce + Breath */
.wallet-topup-alert-attention .alert-icon {
  animation: alertPulseBounce 2s ease-in-out infinite;
}

/* Keyframes */
@keyframes alertPulseBounce {

  0% {
    transform: translateY(0) scale(1);
  }

  25% {
    transform: translateY(-3px) scale(1.05);
  }

  50% {
    transform: translateY(0) scale(1.1);
  }

  75% {
    transform: translateY(-2px) scale(1.05);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}

/* Limit width to match forms/tables */
.wallet-topup-alert-attention {
  max-width: 720px;   /* matches Bootstrap container feel */
  width: 100%;
  margin: 0 auto 16px auto;
}