/* Safend - Login page ONLY fixes */

html, body {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
}

@media (prefers-color-scheme: dark) {
  body {
    background: black;
  }
}

.root {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Login button - red instead of green */
.MuiButton-containedPrimary {
  background-color: #D71920 !important;
  color: #FFFFFF !important;
}

.MuiButton-containedPrimary:hover {
  background-color: #B5151B !important;
}

/* Kill Chrome autofill blue background on password field */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px #2a2a2a inset !important;
  -webkit-text-fill-color: #ffffff !important;
  caret-color: #ffffff !important;
  transition: background-color 5000s ease-in-out 0s !important;
}
