html, body {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
}

.root {
  display: flex;
  flex-direction: column;
  height: 100%;
}
/* Fondo de pantalla para todo el login */
.login-background {
  background-image: url("resources/images/login-background.png"); /* Cambia si tu imagen tiene otro nombre */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Elimina el fondo blanco predeterminado */
.x-body, .x-panel-body, .x-window-body {
  background: transparent !important;
}