.WordSection1 p{
	margin-bottom:20px;
}
.formCancelAccount table {
	width: 100%;
}
.formCancelAccount td {
	padding: 8px;
}
.formCancelAccount .textInput  {
	border: #AE9999 solid 1px;
	border-radius: 8px;
	width: 100%;
	padding: 8px;
}
.cb {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* Ẩn checkbox gốc */
.cb input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Box */
.cb-box {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 2px solid #e6e6ea;
  background: #fff;
  display: grid;
  place-items: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

/* Text */
.cb-text {
  font-size: 18px;
  font-weight: 600;
  color: #2b140f; /* nâu đậm giống design */
}

/* Checked state */
.cb input:checked + .cb-box {
  background: #e11414;
  border-color: #e11414;
}

/* Icon check */
.cb-box::after {
  content: "";
  width: 18px;
  height: 10px;
  border-left: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 3px solid transparent;
  transform: rotate(-45deg);
  opacity: 0;
  transition: opacity 0.15s ease;
}

.cb input:checked + .cb-box::after {
  opacity: 1;
  width: 18px;
  height: 10px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  border-right: none;
  border-top: none;
}

/* Hover / Focus */
.cb:hover .cb-box {
  border-color: #d0d0d6;
}

.cb input:focus-visible + .cb-box {
  outline: 4px solid rgba(225, 20, 20, 0.18);
  outline-offset: 2px;
}
