/* Target the main login container */

/* Optional: make the form look nicer */
.login-page-wrapper {
  min-height: 100vh; /* Full viewport height */
  display: flex;
  flex-direction: column; /* Stack children vertically */
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  margin: 0rem auto !important;
}

.user-login-form {
  padding: 2rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}


.user-login-form .login-logo {
  width: 300px;
  margin: 0 auto;
  margin-bottom: 2rem;
}

.user-login-form .login-logo img {
  width: 300px;
  height: auto;
  margin: 0 auto;
}
