/**
 * FormHelperText 组件样式 - 100% 一比一复刻 MUI
 * 对应 MUI: packages/mui-material/src/FormHelperText/FormHelperText.js
 */

/* =============================================
   Root 基础样式
   ============================================= */
.MuiFormHelperText-root {
  color: rgba(0, 0, 0, 0.6);
  font-family: "Roboto", "Helvetica", "Arial", sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.66;
  letter-spacing: 0.03333em;
  text-align: left;
  margin-top: 3px;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
}

.MuiFormHelperText-text {
  display: block;
}

/* =============================================
   状态
   ============================================= */
.MuiFormHelperText-root.Mui-disabled {
  color: rgba(0, 0, 0, 0.38);
}

.MuiFormHelperText-root.Mui-error {
  color: #d32f2f;
}

/* =============================================
   尺寸变体
   ============================================= */
.MuiFormHelperText-sizeSmall {
  margin-top: 4px;
}

/* =============================================
   Contained (用于 outlined/filled 变体)
   ============================================= */
.MuiFormHelperText-contained {
  margin-left: 14px;
  margin-right: 14px;
}

/* =============================================
   占位符
   ============================================= */
.MuiFormHelperText-placeholder {
  font-size: 0;
  line-height: 0;
}
