.login-bg {
  flex: 1;
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  background: url('/static/images/homeScreenBG.jpg') center center/cover no-repeat;
}

.auth-form-container {
  max-width: 600px;
  width: 90%;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
  padding: 1vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.auth-form {
  width: 80%;
}

.auth-form h2 {
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #222;
}

.auth-btn {
  width: 100%;
  background: #4b8f6e;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.7rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 1.2rem;
  margin-bottom: 0.7rem;
  transition: background 0.2s;
}

.auth-btn:hover {
  background: #357a57;
}

.auth-link {
  text-align: center;
  margin-top: 0.5rem;
}

.auth-link a {
  color: #000;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
}

.auth-link a:hover {
  text-decoration: underline;
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.remember-me input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: #EB7904;

}

.remember-me label {
  cursor: pointer;
  user-select: none;
}