body {
    /* background-color: #fffaf0; */
}

/* Login Page */

.login-box{
    box-shadow: 0px 0px 20px rgba(0,0,0,.40);
}

/* Login Page End */

/* Loader Section */

#preloader-s {
  position: fixed;
  inset: 0;
  background-color: #ffffff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-shimmer-wrapper {
  position: relative;
  width: 100%;
  max-width: 250px;
  height: auto;
  display: inline-block;
}

#preloader-s .logo {
  width: 100%;
  display: block;
  z-index: 1;
}


/* The shimmer overlay layer */
.shimmer-overlay {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  animation: shimmerMove 1.5s infinite;
  z-index: 2;
  pointer-events: none;
}

@keyframes shimmerMove {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}

#preloader-s .logo {
  animation: pulseZoom 2s ease-in-out infinite;
}

@keyframes pulseZoom {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Loader Section End */

/* Animations */
.pulse-a {
  position: relative;
  display: inline-block;
  animation: pulse-a 1.3s ease-in-out infinite;
  transform-origin: center;
}

@keyframes pulse-a {
  0%   { transform: scale(1);   opacity: 1; }
  50%  { transform: scale(1.08); opacity: 0.85; }
  100% { transform: scale(1);   opacity: 1; }
}
/* Animations End */

.time-log{
    border-bottom: solid #b0b0b073 1px;
}
