/* Background styling */
body {
  background: url('/img/loginPage-background.jpg') no-repeat center center/cover;
  height: 100vh;
  margin: 0;
}

/* Centered Signup Box */
.signup-container {
  height: 100vh;
}

/* Signup Box Styling */
.signup-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: #814207;
}
.btn-brown {
  background-color: #814207;
  color: white;
}
.btn-brown:hover {
  background-color: #5a3226;
}
