body {
  background: url('../bg.jpg') no-repeat center center fixed;
  background-size: cover;
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}


.logo {
  width: 150px;
  margin: 10px auto 10px;
  display: block;
}

.login-container, .register-container {
  background: rgba(255, 255, 255, 0.50); /* Slight transparency */
  backdrop-filter: blur(1px); /* Adds a soft blur behind the card */
  max-width: 350px;
  width: 90%;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}


h2 {
  margin-bottom: 20px;
}

input {
  width: 90%;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}
input::placeholder {
  color: #000;   /* black */
  opacity: 0.8;  /* optional – makes it slightly softer */
}

button {
  margin-top: 10px;
  width: 95%;
  padding: 10px;
  background: #4CAF50;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}

button:hover {
  background: #45a049;
}

.link {
  margin-top: 10px;
  font-size: 14px;
}

.link a {
  color: #007bff;
  text-decoration: none;
}

footer {
  margin-top: 30px;
  font-size: 13px;
  color: #555;
}
