.login-hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f");
  background-size: cover;
  background-position: center;
  position: relative;
}

.login-hero::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5); /* dark overlay */
}

.login-content {
  position: relative;
  text-align: center;
  color: white;
  background-color: rgba(0,0,0,0.6); /* subtle card */
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.login-content input {
  padding: 12px 15px;
  margin: 10px 0;
  border-radius: 8px;
  border: none;
  width: 100%;
  max-width: 300px;
  outline: none;
}

.login-content button {
  padding: 12px 30px;
  border-radius: 25px;
  background: linear-gradient(45deg, #ff7a18, #af002d);
  color: #fff;
  margin-top: 15px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.login-content button:hover {
  transform: scale(1.08);
  background: linear-gradient(45deg, #af002d, #ff7a18);
}

@media (max-width: 768px) {
  .login-content {
    padding: 30px;
  }
  .login-content input {
    max-width: 90%;
  }
}