/* 全站文字填写框标准：内容左对齐，空字段提示使用灰色。 */
:where(input:not([type]), input[type="text"], input[type="password"], input[type="email"], input[type="tel"], input[type="url"], input[type="search"], textarea) {
  text-align: left;
}

:where(input:not([type]), input[type="text"], input[type="password"], input[type="email"], input[type="tel"], input[type="url"], input[type="search"], textarea)::placeholder {
  color: var(--pcb-color-text-placeholder, var(--pcb-text-muted, #72827e));
  opacity: 1;
}
