body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  /* background: #f0f2f5; */
  background-image: url(assets/bg_home_page.png);
  background-size: cover;              /* Ensures full cover without stretching */
  background-repeat: no-repeat;        /* Prevents tiling */
  background-position: center;  /* Keeps center focus */
  background-attachment: fixed;  
  
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}
.container {
  background: white;
    padding: 25px 30px;
  border-radius: 10px;
  /* box-shadow: 10 20px 40px rgba(0, 0, 0, 0.1); */
  max-width: 380px;  
  width: 100%;
  margin-left: 20%;
  
}
.logo {    
  display: block;
  margin: 0 auto 15px;
  max-width: 120px;
  height: auto;
  border-radius: 10px;
}
h1 {
  text-align: center;
  margin-bottom: 10px;
  color: #333;
}
form label {
  display: block;
  margin-bottom: 5px;
  color: #333;
}
form input[type="text"],
form input[type="password"],
form input[type="email"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.checkbox-group {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.checkbox-group input {
  margin-right: 10px;
}
.checkbox-group a{
    text-decoration: none;
}
button {
  width: 100%;
  padding: 12px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}
.trust-msg {
  font-size: 13px;
  color: #666;
  margin-top: 10px;
  text-align: center;
}
button:hover {
  background: #0056b3;
}
#queueStatus {
  margin-top: 20px;
  font-weight: bold;
  color: #2d2d2d;
  text-align: center;
}
#loadingPage {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8); /* Optional dark overlay */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  color: white;
  font-size: 1.2rem;
  text-align: center;
}
#redirecting_gif img {
  width: 120px; /* Adjust size as needed */
  height: auto;
  margin-bottom: 1rem;
  border-radius: 15px;
}