.loader {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: #000000;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;

  opacity: 1;
  transition: opacity 1.5s ease; /* fade transition */
  pointer-events: all; /* allow pointer-events until fade completes */
}

.loader.fade-out {
  opacity: 0;
  pointer-events: none; /* prevents interaction while fading */
}

.loader > div {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

.loader .logo {
  width: 60px;
  height: 60px;
  background: url("../images/miusoftLogo.png") no-repeat center/cover;
}

.loader .loader_bg {
  width: 100px;
  height: 100px;
  background: url("../images/load.gif") no-repeat center/cover;
}
