/* Site-wide small fixes — erpsme.vn (2026-08-27) */

/* "Bạn nhận được những gì?" list (component _bannhanduocgi, dùng chung
   trên pro/landingpage/ldp-01..08): mỗi <li> chỉ có 1 dòng icon nhỏ + tên
   sản phẩm. Ảnh của các sản phẩm mới (SIS Remote Access, SIS Bank Hub...)
   là ảnh banner quảng cáo khổ lớn (không phải icon vuông nhỏ như 10 sản
   phẩm gốc), nên hiện to bất thường, phá layout. Ép về đúng cỡ icon nhỏ,
   không phụ thuộc kích thước ảnh gốc trong dữ liệu.
*/
.section_content_home_area .intro-content ul.list-unstyled li img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 6px;
}

/* Popup "Đăng ký tư vấn giải pháp" (_modal_register.blade.php) — để trông
   giống hệt trang chuẩn /dang-ky-tu-van-giai-phap, bỏ khung trắng mặc định
   của Bootstrap modal-content và để đúng khối .wrap-form-register (đã có
   sẵn CSS nền xanh, bo góc, nút cam) tự hiển thị, không vẽ giao diện mới. */
.modal-register-popup .modal-dialog {
  max-width: 652px;
}
.modal-register-popup .modal-content {
  background: transparent;
  border: 0;
  position: relative;
}
.modal-register-popup .wrap-form-register {
  padding: 30px 35px;
}
.modal-register-popup .btn-close-register-popup {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  color: #0D73D7;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0,0,0,.25);
}
