/* Make the whole page a centered column */
body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
  background: #f5f5f5; /* or whatever your bg is */
  font-family: sans-serif;

}

/* Stack the logo + welcome text */
.login-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}

.login-logo img {
  max-width: 150px;
  height: auto;
}

.login-welcome {
  margin-top: 1rem;
  font-size: 1.75rem;
  color: #333; /* adjust to your theme */
}

/* Center the login form under the header */
.login-container {
  width: 100%;
  max-width: 320px;
  padding: 2rem;
  background: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border-radius: 4px;
  box-sizing: border-box;
}

.login-container h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}


.input-group {
  margin-bottom: 15px;
}

.input-group label {
  display: block;
  margin-bottom: 5px;
}

.input-group input {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box; /* ensures padding doesn't affect width */
}

button {
  background-color: #259300;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

button:hover {
 background-color: #38df00;
}

.login-logo {
  text-align: center;
  margin: 2rem 0;
}
.login-logo img {
  max-width: 200px;
  height: auto;
}

