/* Background styling */
body {
  background: url('/img/loginPage-background.jpg') no-repeat center center;
  background-size: cover; /* Ensures full coverage */
  background-attachment: fixed; /* Prevents scrolling effect */
  background-position: center center; /* Centers the image */
  height: 100vh;
  margin: 0;
}

/* Centered Login Box */
.login-container {
  height: 100vh;
}

/* Login Box Styling */
.login-box {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  width: 350px;
  padding: 20px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* Custom Brown Theme */
.text-brown {
  color: #6b3e2e;
}
.btn-brown {
  background-color: #6b3e2e;
  color: white;
}
.btn-brown:hover {
  background-color: #5a3226;
}
