@charset "UTF-8";
/* Font Size */
/* Font Weight */
/* Width */
/* Height */
/* Display */
/* Margin */
/* Padding */
/* Cursor */
/* Background Color */
/* Color */
/******************  自 _config.scss 搬入（2026-08-14 item 32）  ******************/
/* 毛玻璃 */
/* Text Limit —— 後台原本沒有這支 */
:root {
  /* Primary Color — 紫 purple（對齊 Figma pc）*/
  --pc-950: #09131A;
  --pc-900: #19222B;
  --pc-800: #2D353E;
  --pc-700: #424A53;
  --pc-600: #596068;
  --pc-500: #70767E;
  --pc-400: #888E95;
  --pc-300: #A1A6AC;
  --pc-200: #BABFC4;
  --pc-100: #D4D8DD;
  --pc-50: #EFF2F6;
  /* Secondary Color — 靛藍 indigo（對齊 Figma sc）*/
  --sc-950: #0B0910;
  --sc-900: #1E192B;
  --sc-800: #322D3E;
  --sc-700: #474253;
  --sc-600: #5D5868;
  --sc-500: #746F7E;
  --sc-400: #8C8795;
  --sc-300: #A4A0AC;
  --sc-200: #BDBAC4;
  --sc-100: #D7D4DD;
  --sc-50: #F1EFF6;
  /* Neutral Color — 中性灰（取代舊的 sc 與 tc 兩組）*/
  --nc-950: #0A0A0A;
  --nc-900: #171717;
  --nc-800: #262626;
  --nc-700: #404040;
  --nc-600: #525252;
  --nc-500: #737373;
  --nc-400: #A1A1A1;
  --nc-300: #D4D4D4;
  --nc-200: #E5E5E5;
  --nc-100: #F5F5F5;
  --nc-50: #FFFFFF;
  /* Red Color — 錯誤／危險（取代舊的 warn-200）*/
  --rc-950: #4B0407;
  --rc-900: #881418;
  --rc-800: #A50F15;
  --rc-700: #C80D14;
  --rc-600: #ED151D;
  --rc-500: #FF444B;
  --rc-400: #FF646A;
  --rc-300: #FF9DA1;
  --rc-200: #FFC5C7;
  --rc-100: #FFDFE0;
  --rc-50: #FFF1F2;
  /* Yellow Color — 警告／待處理（取代舊的 error-200）*/
  --yc-950: #461B02;
  --yc-900: #7A350D;
  --yc-800: #94400C;
  --yc-700: #B75506;
  --yc-600: #DD7902;
  --yc-500: #F9A107;
  --yc-400: #FFC321;
  --yc-300: #FFD74A;
  --yc-200: #FFE888;
  --yc-100: #FFF5C6;
  --yc-50: #FFFBEB;
  /* Success Color — 成功（取代舊的 ac 與 success-200）*/
  --suc-950: #0F2A09;
  --suc-900: #254D1A;
  --suc-800: #285B19;
  --suc-700: #2E7219;
  --suc-600: #3A951B;
  --suc-500: #51C128;
  --suc-400: #6ED645;
  --suc-300: #93E571;
  --suc-200: #BCF1A5;
  --suc-100: #DDF7D0;
  --suc-50: #F0FCE9;
  /* Font-Size */
  --text-9xl: 128px;
  --text-9xl--line-height: 1;
  --text-8xl: 96px;
  --text-8xl--line-height: 1;
  --text-7xl: 72px;
  --text-7xl--line-height: 1;
  --text-6xl: 60px;
  --text-6xl--line-height: 1;
  --text-5xl: 48px;
  --text-5xl--line-height: 1;
  --text-4xl: 36px;
  --text-4xl--line-height: 2.5rem;
  --text-3xl: 30px;
  --text-3xl--line-height: 2.25rem;
  --text-2xl: 24px;
  --text-2xl--line-height: 2rem;
  --text-xl: 20px;
  --text-xl--line-height: 1.75rem;
  --text-lg: 18px;
  --text-lg--line-height: 1.75rem;
  --text-base: 16px;
  --text-base--line-height: 1.5rem;
  --text-sm: 14px;
  --text-sm--line-height: 1.25rem;
  --text-xs: 12px;
  --text-xs--line-height: 1rem;
  /* Radius */
  --radius-4: 4px;
  --radius-8: 8px;
  --radius-16: 16px;
  --radius-24: 24px;
  --radius-32: 32px;
  --radius-40: 40px;
  --radius-80: 80px;
  --radius-100: 100px;
  /* Spacing */
  --spacing-4: 4px;
  --spacing-8: 8px;
  --spacing-12: 12px;
  --spacing-16: 16px;
  --spacing-18: 18px;
  --spacing-20: 20px;
  --spacing-24: 24px;
  --spacing-28: 28px;
  --spacing-32: 32px;
  --spacing-40: 40px;
  --spacing-48: 48px;
  --spacing-56: 56px;
  --spacing-64: 64px;
  --spacing-72: 72px;
  --spacing-80: 80px;
  --spacing-120: 120px;
  --spacing-240: 240px;
}

.login-container {
  background: var(--pc-950) !important;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
}

.login {
  background: url(/images/login/background.jpg) no-repeat;
  width: 100%;
  max-width: 1920px;
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 50px;
}
.login .input-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.login .input-wrap-title {
  font-size: var(--text-base) !important;
  line-height: var(--text-base--line-height);
  color: var(--nc-800);
}
.login .input-wrap input {
  font-size: 14px;
  height: 45px;
  border-radius: 8px;
}
.login .box {
  width: 400px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.3019607843);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 50px 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1019607843);
  color: black;
  transition: height 2s ease-in-out;
}
.login .box .img-container {
  display: flex;
  justify-content: center;
  margin: 0 0 20px 0;
}
.login .box .img-container img {
  width: 140px;
}
.login .box .title {
  margin: 15px 0 5px 0;
  text-align: center;
}
.login .box .subtitle {
  color: var(--nc-300) !important;
  text-align: center;
}
.login .box .btn {
  cursor: pointer;
  border: none;
  color: white;
  background: #e5751b;
  border-radius: 8px;
  padding: 10px 0;
  font-size: 12pt;
  height: 45px;
}
.login .box .btn:hover {
  box-shadow: 0 0 5px #e5751b;
}
.login .box .btn-submit {
  width: 100%;
  margin-top: 10px;
}
.login .pwd-box {
  z-index: 999;
  position: relative;
}
.login .pwd-box .pwd-icon {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  cursor: pointer;
}
@media (max-width: 576px) {
  .login {
    padding: 0 15px;
  }
  .login .text {
    font-size: var(--text-sm);
  }
  .login .box {
    width: 95%;
  }
}