body,
html {
  height: 100%;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f0f0f5;
  color: #0A1C50;
}

.loading-container {
  text-align: center;
}

.landing-logo {
    width: 82px;
    height: 72px;
    display: block;
    margin: 0 auto;
    margin-bottom: 36px;
  }

.logo {
      width: 198px;
      /* Adjust as per the size of your logo */
      height: 136px;
      /* Adjust as per the size of your logo */
      display: block;
      margin: 0 auto;
      margin-bottom: 34px;
    }

.text {
  font-family: 'Montserrat', sans-serif;
  color: #0A1C50;
  /* Example color (dark gray) */
  font-weight: 400;
  /* Normal font weight */
  font-size: 32px;
  line-height: 38px;
  /* 118.75% */
  letter-spacing: -0.64px;
  font-style: normal;
}

.text strong {
  font-family: 'Montserrat', sans-serif;
  color: #0A1C50;
  /* Example color (dark gray) */
  font-weight: 600;
  /* Normal font weight */
  font-size: 32px;
  line-height: 38px;
  /* 118.75% */
  letter-spacing: -0.64px;
  font-style: normal;
}

.text progress {
  font-family: 'Montserrat', sans-serif;
  color: #0A1C50;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  font-style: normal;
}

.loading-bar {
  width: 100px;
  /* Size of the loader */
  height: 100px;
  /* Size of the loader */
  margin: 0 auto;
  /* Centers the loader horizontally */
  position: relative;
  margin-top: 52px;
}

.circular-loader {
  animation: rotate 2s linear infinite;
  height: 100%;
  transform-origin: center center;
  width: 100%;
}

.path {
  stroke-dasharray: 125.6;
  /* Circumference of the circle */
  stroke-dashoffset: 125.6;
  /* Full circumference */
  stroke-linecap: round;
  stroke: #CEDCFF;
  /* Stroke color */
  animation: dash 1.5s linear infinite;
}

.path {
  stroke-dasharray: 125.6;
  /* Circumference of the circle */
  stroke-dashoffset: 125.6;
  /* Full circumference */
  stroke-linecap: round;
  transform-origin: center center;
  animation: dash 1.5s linear infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes dash {
  to {
    stroke-dashoffset: 0;
    /* Stroke fills up */
  }
}

@keyframes color-change {
  0% {
    stroke: #859BC5;
  }

  100% {
    stroke: #CEDCFF;
  }
}

.greeting {
      font-family: 'Montserrat', sans-serif;
      color: #0A1C50;
      font-weight: 500;
      font-size: 16px;
      line-height: 27px;
      letter-spacing: -0.32px;
      font-style: normal;
      margin-top: 8px;
  }

.highlighted {
      font-family: 'Montserrat', sans-serif;
      color: #0A1C50;
      font-weight: 500;
      font-size: 28px;
      line-height: 30px;
      letter-spacing: -0.56px;
      font-style: normal;
      margin-bottom: 8px;
  }

.loading-text {
  margin-top: 55px;
  margin-bottom: 16px;
  font-family: 'Montserrat', sans-serif;
  color: #0000ff;
}
