body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-image: url(../assets/Bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  color: white;
}

#reportContainer {
      margin: 0;
      padding: 0;
      width: 100vw;
      height: 100vh;
      overflow: hidden;
      display: none;
    }

#reportcontainer iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.login-container {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  padding: 2rem 3rem;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  text-align: center;
  max-width: 400px;
}
.logo {
  width: 120px;
  margin-bottom: 1.5rem;
}
h1 {
  margin: 0 0 1rem;
  font-weight: 300;
}
.login-btn {
  background: white;
  color: #e77001;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}
.login-btn:hover {
  background: #f3f3f3;
  transform: translateY(-2px);
}
.login-btn svg {
  margin-right: 8px;
}
.footer {
  margin-top: 2rem;
  font-size: 12px;
  opacity: 0.8;
}
