/* скрываем чекбокс-«замыкатель» */
.alert-close-checkbox {
  display: none;
}

/* общий контейнер алерта */
.alert {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 320px;
  max-width: 90%;
  padding: 24px;
  background: #1f1f1a;                           /* как у .modal */
  border: 1px solid rgba(202, 176, 113, 0.16);   /* тонкая рамка, как у input */
  color: #fff;                                   
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  font-size: 16px;
  line-height: 1.4;
  z-index: 10000;
}

/* заголовок алерта */
.alert h1 {
  margin: 0 0 12px;
  text-align: center;
  font-size: 20px;
  color: #cab170;    /* ваш «акцентный» цвет */
}

/* основной текст алерта */
.alert p {
  margin: 0;
}

/* кнопка закрытия (крестик) */
.alert-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  color: inherit;
  user-select: none;
}

/* скрываем алерт при «чекнутом» чекбоксе */
#alert-error-close:checked + .alert,
#alert-success-close:checked + .alert {
  display: none;
}
