/* =========================================================
   M2 Digital - Fiori Login Overrides
   ========================================================= */

/* 1) Copyright unten rechts */
.loginCopyright .sapMLabel {
  color: #ffffff !important;
}

/* 2) "Kennwort ändern" */
#CHANGE_PASSWORD_LINK {
  color: #ffffff !important;
}

#CHANGE_PASSWORD_LINK:hover,
#CHANGE_PASSWORD_LINK:focus {
  color: #ffffff !important;
  text-decoration: underline !important;
}

/* 3) Allgemeine Labels innerhalb der Loginmaske
   z.B. "Sprache" */
#LOGIN_FORM label,
#LOGIN_FORM .sapMLabel {
  color: #ffffff !important;
}

/* 4) Falls SAP Select-/Dropdown-Text oder andere Textelemente
   dunkel bleiben */
#LOGIN_FORM .sapMText,
#LOGIN_FORM .sapMSltLabel,
#LOGIN_FORM .sapUiInvisibleText {
  color: #ffffff !important;
}

/* 5) Optional: Placeholder im Input etwas dunkler/gut lesbar
   NUR falls du hier noch optimieren willst */
#LOGIN_FORM input::placeholder {
  color: #666666;
  opacity: 1;
}

/* 6) Optional: Fokus besser sichtbar */
#CHANGE_PASSWORD_LINK:focus,
#LOGIN_FORM input:focus,
#LOGIN_FORM select:focus {
  outline: 2px solid rgba(255,255,255,0.5);
  outline-offset: 2px;
}