body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: #3b5998;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
}

.logo {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  cursor: pointer;
}

.logo img {
  width: 110px;
  height: 50px;
}

.loader-container {
  display: flex;
  justify-content: center;
}

.loader {
  width: 10px;
  height: 10px;
  background-color: #ccc;
  border-radius: 50%;
  margin: 2px 6px;
  animation: bounce 1.5s infinite;
}
.blue {
  background-color: #3b5998;
}
.gradient {
  background: linear-gradient(to left, #ccc, #3b5998);
}

.bottom-bar,
.bottom-bar1 {
  background-color: transparent;
  padding: 10px;
  text-align: center;
  position: fixed;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bottom-bar {
  bottom: 50px;
}

.bottom-bar1 {
  bottom: 0;
}

.bottom-bar p {
  margin: 0;
}

.bottom-bar1 span {
  color: #1877f2;
  font-size: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  margin-left: 5px;
}

.bottom-bar1 img {
  width: 30px;
  margin-right: 5px;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
