body {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  margin: 0;
  font-family: Roboto;
  font-style: normal;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.logo {
  margin-bottom: 8px;
}

.progress-bar {
  height: 4px;
  background-color: rgb(0 156 166 / 20%);
  width: 100%;
  overflow: hidden;
}

.progress-bar-value {
  width: 100%;
  height: 100%;
  background-color: rgb(0 156 166);
  animation: indeterminateAnimation 1s infinite linear;
  transform-origin: 0% 50%;
}

@keyframes indeterminateAnimation {
  0% {
    transform: translateX(0) scaleX(0);
  }
  40% {
    transform: translateX(0) scaleX(0.4);
  }
  100% {
    transform: translateX(100%) scaleX(0.5);
  }
}

/* error.html */
.error-background {
  background-image: url(./background.png);
  position: fixed;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat, no-repeat;
  background-position: center center, center center;
  background-size: cover, cover;
}

.modal-container {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}


.error-container {
  background-color: white;
  width: 380px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  padding: 50px 50px 40px 50px;
}

.message h4 {
  font-size: 20px;
}

.message h3 {
  font-size: 22px;
}


.message a {
    color: #009ca6;
}
