body {
  background-color: #101418;
  color: #ffffff;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

#loading-screen {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: linear-gradient(135deg, #3a0ca3, #7209b7, #f72585);
  color: #e0e0e0;
  flex-direction: column;
  position: fixed;
  top: 0;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  text-align: center;
  padding: 30px;
  width: calc(100% - 60px);
  left: 50%; 
  transform: translateX(-50%);
  z-index: 1;
}

.loading-content {
  text-align: center;
}

.progress-bar {
  height: 5px;
  background-color: #e0e0e0;
  position: relative;
  overflow: hidden;
  margin: 25px auto;
  width: calc(100% - 50px);
}

.progress-bar::after {
  content: '';
  display: block;
  height: 100%;
  width: 0;
  background-color: #ffcc00;
  animation: loading 4s linear forwards;
}

@keyframes loading {
  0% { width: 0; }
  100% { width: 100%; }
}

.container {
  text-align: center;
}

.logo img {
  width: 50px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 90px;
}

.context {
  position: absolute;
  top: 160px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.language-selector {
  background-color: #101418;
  color: #ffffff;
  border: none;
  padding: 10px;
  margin-bottom: 20px;
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.login-form input {
  padding: 15px;
  border: none;
  border-radius: 10px;
  background-color: #3a3a3a;
  color: #ffffff;
  width: 300px;
}

.login-form button {
  padding: 15px;
  border: none;
  border-radius: 25px;
  background-color: #008CBA; /* Blue button */
  color: white;
  cursor: pointer;
  margin-top: 10px;
}

.login-form button:hover {
  background-color: #006b8a; /* Darker blue */
}

footer {
  bottom: 5px;
  position: absolute;
  font-size: 14px;
  left: 50%;
  transform: translateX(-50%);
}