* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body, html {
  height: 100%;
  overflow: hidden;
}

#bgCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(#001e3c, #000c1f);
  z-index: -1;
}

.logo-section {
  position: absolute;
  top: 60px;
  left: 80px;
  color: #fff;
}

.logo-section .logo {
  width: 400px;
}

.logo-section .tagline {
  margin-left: 12px;
  font-size: 30px;
  color: #ffffffcc;
  letter-spacing: 6px;
}
/* Logo image styling */
.logo1 {
  width: 250px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 5%;
}


.login-box {
  position: absolute;
  top: 40%;
  right: 80px;
  transform: translateY(-20%);
  background: rgba(0, 14, 34, 0.85);
  border-radius: 20px;
  padding: 40px 30px;
  width: 500px;
  color: white;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.login-box h2 {
  margin-bottom: 20px;
}

.login-box input {
  width: 100%;
  padding: 4%;
  margin: 20px 0;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 10px;
  color: white;
  font-size: 18px;
  height: 100%;
  text-align: center;
}

.login-box input::placeholder {
  color: #ccc;
  height: 50%;
}

button {
  width: 100%;
  background: #84e300;
  color: #001e3c;
  font-size: 18px;
  font-weight: bold;
  padding: 12px 15px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s ease;
  height: 20%;
  margin-top: 5%;
  padding: 4%;
  /* text-align: center;  */
}

button:hover {
  background: #a6ff4d;
}

