/* ===== STAR Desk: white-label + причёсанный логин Authelia ===== */

/* убрать "Powered by Authelia" */
a[href*="authelia.com"] { display: none !important; }
.MuiTypography-root:has(a[href*="authelia.com"]) { display: none !important; }

/* поля ввода: спокойный полупрозрачный фон вместо ярко-синего, читаемые подписи */
.MuiFilledInput-root {
  background: rgba(255,255,255,0.06) !important;
  border-radius: 10px !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
}
.MuiFilledInput-root:hover { background: rgba(255,255,255,0.10) !important; }
.MuiFilledInput-root.Mui-focused {
  background: rgba(91,140,255,0.12) !important;
  border-color: #5b8cff !important;
}
/* убрать штатное подчёркивание MUI (оно и давало кривую линию) */
.MuiFilledInput-root::before,
.MuiFilledInput-root::after { display: none !important; }

/* подписи полей: контрастные и не наезжают */
.MuiInputLabel-root { color: #aab6d6 !important; }
.MuiInputLabel-root.Mui-focused { color: #5b8cff !important; }
.MuiInputBase-input { color: #eef2fb !important; }

/* глаз показа пароля — сделать заметным */
.MuiInputAdornment-root .MuiIconButton-root,
.MuiInputAdornment-root .MuiSvgIcon-root { color: #cdd7f0 !important; opacity: 1 !important; }

/* кнопка входа в наш акцент */
button[type="submit"] {
  background: linear-gradient(135deg,#5b8cff,#8b5bff) !important;
  color: #fff !important;
}

/* убрать ярко-синий фон Chrome-автозаполнения — под нашу тёмную тему */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px #1a2337 inset !important;
  -webkit-text-fill-color: #eef2fb !important;
  caret-color: #eef2fb !important;
  border-radius: 10px !important;
}
