/* Cowboys logo above login form ONLY (keeps Traccar default layout/colors) */

body.cowboysLogin .MuiGrid-item:last-child .MuiPaper-root{
  position: relative;
}

/* Centered Cowboys logo above the form card */
body.cowboysLogin .MuiGrid-item:last-child .MuiPaper-root::before{
  content:"";
  display:block;
  width: 260px;
  height: 84px;

  /* center robustly even if parent is flex */
  margin: 8px auto 18px auto;
  margin-left: auto !important;
  margin-right: auto !important;
  align-self: center !important;

  background: url("/assets/cowboyslogo.png") no-repeat;
  background-size: contain;
  background-position: 50% 50%;

  filter: drop-shadow(0 10px 30px rgba(0,0,0,.35));
  opacity: .98;
}

