/* Full black background */
body {
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

/* Centered login box */
.login-box {
  background-color: rgba(0, 0, 0, 0.9); /* Slight transparency */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.2); /* Light shadow */
  width: 100%;
  max-width: 400px;
  text-align: center;
  color: white;
}

/* Header inside the login box */
#header {
  background-color: #3b6978; /* Blue color */
  padding: 15px;
  border-radius: 10px 10px 0 0;
  display: flex;
  align-items: center;
  justify-content: center; /* Center logo */
  position: relative;
}

/* Logo adjustments */
#header-logo img {
  height: 40px;
}

/* Form styling */
.form-row {
  margin: 15px 0;
  text-align: left;
}

/* Input fields */
input {
  width: 96%;
  padding: 30px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

/* Submit button */
.submit-row input {
  background-color: #3b6978;
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
}

.submit-row input:hover {
  background-color: #2f5b6b;
}

/* Make it responsive */
@media (max-width: 600px) {
  .login-box {
      width: 90%;
  }
}
