body.login-page {
  background-image: linear-gradient(to top, #48c5ef8a 0%, #6f85d660 100%);
  background: #edf2f9a1;
}
.login-container {
  max-width: 860px;
}
.login-container,
.register-box {
  position: relative;
}
.card {
  background: #ececec00 !important;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.193);
}
/* .login-container .card,
.register-box .card {
  border-radius: 9px;
  border: 0;
  --falcon-card-bg: #ffffff73;
  -webkit-box-shadow: 0 7px 14px 0 rgba(65, 69, 88, 0.1),
    0 3px 6px 0 rgba(0, 0, 0, 0.07);
  box-shadow: 0 7px 14px 0 rgba(65, 69, 88, 0.1),
    0 3px 6px 0 rgba(0, 0, 0, 0.07);
} */
.login-logo,
.register-logo {
  line-height: 25px;
  padding-top: 15px;
  padding-bottom: 45px;
  font-size: 45px;
}
.login-form {
  background-image: linear-gradient(to top, #bcedfff4 30%, #dae2ff91 100%);
}
.login-container .bg-card-gradient {
  padding: 30px 15px 5px 15px;
  border-top-left-radius: 9px;
  border-bottom-left-radius: 9px;
}
.login-container .bg-card-gradient p {
  letter-spacing: 0.025rem;
}
.login-logo a,
.register-logo a {
  color: #ffe89d;
  font-weight: 350;
}
.text-support {
  color: #ffe89d;
  /* font-weight: 350; */
}
.login-container-msg,
.register-box-msg {
  padding: 0px;
}
.bg-card-gradient {
  background-image: linear-gradient(to bottom, #1970e249, #016ffff6);
  background-position: center;
}
.login-card-body,
.register-card-body {
  padding: 0px;
  padding-left: 7px;
  border-radius: 9px;
  background-color: #ffffff00;
}
.login-card-body h4,
.register-card-body h4 {
  font-weight: 550;
  color: #001ba0;
}
.bg-holder {
  position: absolute;
  width: 100%;
  min-height: 80%;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  will-change: transform, opacity, filter;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-repeat: no-repeat;
  z-index: 0;
}
.bg-holder.bg-auth-card-shape {
  background-image: url(../img/half-circle.png);
  background-position: 0 133%;
}

.login-container form,
.register-box form {
  padding: 30px;
}
.brand-image {
  height: 120px;
  width: 120px;
  border: 2px solid #d6fcffd2;
}
.captcha-image {
  border: 1px solid #ced4da;
  height: 38px;
}
@media (min-width: 992px) {
  .bg-auth-circle-shape,
  .bg-auth-circle-shape-2 {
    display: block;
  }
}

.bg-holder.collage-strip {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  z-index: 0;
  overflow: hidden;
}

.strip-tile {
  flex: 1;
  position: relative;
  transform: skewX(-5deg);
  overflow: hidden;
}

/* Main image styles */
.strip-tile::before {
  content: "";
  position: absolute;
  top: 0;
  left: -10%;
  width: 120%;
  height: 100%;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  transform: skewX(5deg) scale(1.1);
  animation: zoomPulse 4s ease-in-out 2 alternate;
  transition: transform 0.4s ease;
  z-index: -1;
  filter: blur(2px);
}

/* Hover effect: more zoom */
.strip-tile:hover::before {
  transform: skewX(5deg) scale(1.2);
  filter: blur(0px);
}
/* White tint overlay */
.strip-tile::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.203);
  z-index: -1;
}

@keyframes zoomPulse {
  0% {
    transform: skewX(5deg) scale(1.1);
  }
  100% {
    transform: skewX(5deg) scale(1.2);
  }
}

/* Optional: give different delays to each tile */
.strip-tile:nth-child(1)::before {
  animation-delay: 0s;
}
.strip-tile:nth-child(3)::before {
  animation-delay: 1s;
}
.strip-tile:nth-child(5)::before {
  animation-delay: 2s;
}
.strip-tile:nth-child(7)::before {
  animation-delay: 3s;
}
.strip-separator {
  width: 8px;
  background: white;
  transform: skewX(-5deg);
  z-index: 1;
}

/* Slightly transparent card */
.login-container .card {
  background-color: rgba(255, 255, 255, 0.788); /* white with transparency */
}

@media (max-width: 768px) {
  .bg-holder.collage-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    transform: none;
  }

  .strip-tile {
    transform: none;
    overflow: hidden;
  }

  .strip-tile::before {
    transform: scale(1.1); /* No skew */
    animation: zoomPulseMobile 6s ease-in-out infinite alternate;
    filter: blur(2px);
  }

  .strip-tile:hover::before {
    transform: scale(1.2);
  }

  .strip-separator {
    display: none;
  }
}

/* Optional: smoother loop for mobile */
@keyframes zoomPulseMobile {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1.2);
  }
}
