/* The rest of your existing CSS */
h1, h4, h3 {
    margin: 0.5em auto;
    text-align: center;
    color: #333;
}

h2 {
    margin-block-end: 0em;
}

h5 {
    font-size: 9px;
    text-align: center;
}


.forward {
    font-weight: bold;
}



.login-error {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}

.login-button {
  margin-left: 10px;
}


.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #ccc;
  border-top: 5px solid #ffe600;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

.loading-text {
  font-size: 18px;
  color: #333;
  font-weight: bold;
}

@keyframes spin {
 0% { transform: rotate(0deg); }
 100% { transform: rotate(360deg); }


[v-cloak] {
    display: none;
  }