.toast {
  border-radius: 8px;
  border: 1px solid #0000001a;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.toast.is-hidden {
  display: none;
}

.toast .toast-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

.toast .toast-text {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.2px;
  color: #121212;
}

.toast .toast-text-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  text-align: left;
}

.toast .toast-text--sub {
  font-size: 12px;
  font-weight: 500;
  color: #121212;
}

/* [4A] OTP 코드 불일치 등 — 경고(노란 톤), 아이콘: icon-warning.png */
.toast.is-warning {
  background: #fde6a6;
  border-color: #e5a84a;
}

.toast.is-success {
  background: #ffffff;
  border-color: #0000001a;
  margin-bottom: 16px;
}

.toast.is-muted {
  background: #f3f3f5;
  border-color: #e5e7eb;
}

/* [5A] 누적 오류로 로그인 제한 — 에러(레드 톤), 아이콘: icon-error.png. 문구색 흰색 아님 */
.toast.is-error {
  background: #fef2f2;
  color: #b91c1c;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 13px;
  margin-bottom: 16px;
  border: 1px solid #fecaca;
}

.toast.is-error .toast-text {
  color: #b91c1c;
}

/* 로그인 */
.login-form .toast {
  box-shadow: none;
}

.toast.is-muted {
  margin-bottom: 16px;
}