body { 
  margin: 0; 
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif !important; 
  background-color: #fbfcff; 
}



.login-page {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.login-box {
  background: rgba(215, 215, 215, 0.10);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 17px;
  padding: 50px;
  width: 400px;
  height: max-content;
  box-shadow: 0 0 25px rgba(0,0,0,0.1);
  text-align: center;
}

.logo {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
}

.login-box h2 {
  margin: 25px 0;
  font-size: 35px;
  color: #060f2e;
}

.subtext {
  color: #666;
  margin-bottom: 20px;
}

label {
  display: block;
  text-align: left;
  font-size: 14px;
  margin-top: 15px;
  color: #333;
  font-weight: bold;
}

input {
  width: 92%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

button {
  margin-top: 20px;
  width: 100%;
  background-color: #060f2e;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
}

button:hover {
  background-color: #0a184b;
}

.error {
  color: red;
  margin-bottom: 10px;
}

.live-datetime {
  font-size: 15px;
  font-weight: 500;
  color: #333;
  white-space: nowrap;
}


#bgCanvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }




