body {
  margin: 0;
  padding: 0;
}
#splash-screen {
  position: absolute;
  z-index: 1000;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #f2f3f8;
}

#splash-screen img {
  margin-left: calc(100vw - 100%);
  margin-bottom: 30px;
}

#splash-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.splash-spinner {
  animation: rotate 2s linear infinite;
  margin-left: calc(100vw - 100%);
  width: 50px;
  height: 50px;
}

.splash-spinner .path {
  stroke: #5d78ff;
  stroke-linecap: round;
  animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}

.circle {
  width: 60px; /* 80 */
  height: 30px; /* 40 */
  border-radius: 30px; /* Half of the height to create a circular shape */
  background-color: #007bff; /* Example background color */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0; /* Adjust padding as needed */
}

.circle_real {
  width: 30px; /* 60 */
  height: 30px; /* 30 */
  border-radius: 30px; /* Half of the height to create a circular shape */
  background-color: #007bff; /* Example background color */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0; /* Adjust padding as needed */
}

.circle-row {
  display: flex;
  justify-content: space-around; /* Adjust as needed, for example, you can use space-around */
  padding: 20px 0;
}

.end-row {
  display: flex;
  justify-content: space-around; /* Adjust as needed, for example, you can use space-around */
  padding: 0px 0;
}



.or-text {
  font-weight: bold;
  font-size: 16px;
  color: #555;
}