body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: Arial, sans-serif;
}
/*  removed image version */
.hero {
  background-image: url('/css/img/cyclists_pedestrians.jpg'); /* Replace with your background image */
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}


/*.hero {
  background-color: #4A709C;
  background-position: center;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
} */

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Adds a dark overlay */
}

.content {
  position: relative;
  text-align: center;
  color: white;
  z-index: 2;
}

h1 {
  font-size: 3em;
  margin-bottom: 0.5em;
}

p {
  font-size: 1.2em;
  margin-bottom: 2em;
}

.login-container {
  background: rgba(0, 0, 0, 0.2); /* Dark transparent background */
  padding: 20px;
  border-radius: 10px;
  max-width: 300px;
  margin: 0 auto;
}

.login-container h2 {
  margin-bottom: 20px;
  color: white;
}

.login-container input,
.login-container button {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-sizing: border-box;
  font-size: 16px;
}

.login-container input {
  background: rgba(255, 255, 255, 0.9);
  color: #333;
}

.login-container button {
  background-color: #177AB5;
  color: white;
  border: none;
  cursor: pointer;
}

.login-container button:hover {
  background-color: #0b5e92;
}

.forgot-password {
  display: block;
  margin-top: 10px;
  color: #8BC441;
  text-decoration: none;
}

.forgot-password:hover {
  text-decoration: underline;
}

.buttons {
  margin-top: 20px;
}

.button {
  display: inline-block;
  background-color: #177AB5;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  margin: 5px;
}

.button:hover {
  background-color: #0b5e92;
}
