/* login.css — 從 login.jsp 的 inline <style> 與 inline style= 外部化而來
   （消除 style-src 'unsafe-inline'，改由收緊 CSP 的 'self' 允許）。
   注意：背景圖路徑改為相對於本 css 檔位置（css/login/ → ../../image/…）。
   詳見 docs/security/CSP_TIGHTENING_ASSESSMENT.md */

body {
  background: url("../../image/login/1.jpg") no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;

  font-size: 14px;
  font-weight: bold;
  font-family: "Helvetica Neue", Helvetica, Arial, "微軟正黑體", "微软雅黑", "メイリオ", "맑은 고딕", sans-serif;
}

.text-shadow {
  color: #f5f5f5;
  text-shadow:
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000,
    2px 2px 2px black;
}

.form-control {
  margin-bottom: 3px;
}

/* 原 inline style= 改為 class */
.kaptcha-img {
  vertical-align: text-bottom;
}

.fs-14 {
  font-size: 14px;
}
