
@import url(https://fonts.googleapis.com/css?family=Montserrat);

.loadingrel {
  position: relative;
  margin-top: 150px;
}

.centerwrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: -150px;
  margin-bottom: 100px;
  text-align: center;
}

.centerwrap h1 {
  font-family: "Open Sans", sans-serif;	
  font-size: medium;
}

.centerwrap img.logo {
  max-width: 165px;
  margin-bottom: 50px;
}

/* Modern loading spinner */
.bounceloading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
  padding-top: 40px;
} 

.bounceball {
  width: 48px;
  height: 48px;
  border: 3px solid #f0f0f0;
  border-top-color: #3b82f6;
  border-radius: 50%;
  animation: spinner 0.8s linear infinite;
}

@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}

/* Optional text - subtle and minimal */
.text {
  color: #6b7280;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.5px;
  opacity: 0.8;
}