/* Loader Container */
.loader {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #ffffff;
  position: relative;
}

/* Logo Container */
.logo-container {
  position: relative;
  width: 60px;
  height: 60px;
}

/* Animated Border */
.loader .logo-container::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 50px;
  height: 50px;
  opacity: .85;
  background-image: url("../images/logo.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Animated Border */
.loader .logo-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 5px solid transparent;
  border-top-color: #85309a;
  border-right-color: #9E2898;
  border-bottom-color: #85309a;
  border-left-color: #9E2898;
  border-radius: 10px;
  animation: rotate 2s linear infinite;
}

/* Keyframes for Rotation Animation */
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
