
#splashScreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); 
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000; 
  }
  

#splashScreen .splash-content {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  width: 90%;
  max-width: 400px;
}


#splashScreen h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #333333;
}


#splashScreen #verifyButton {
  background-color: #007BFF;
  color: #ffffff;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}


#splashScreen #verifyButton:hover {
  background-color: #0056b3;
}

#splashScreen #captchaError {
  color: red;
  margin-top: 10px;
  font-size: 14px;
}


#captchaLoadingNotif {
  font-size: 16px;
  color: #333333;
  margin-top: 20px;
  animation: fadeInAndOut 2s infinite;
}

@keyframes fadeInAndOut {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}