body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; /* Full height of the viewport */
  font-family: Arial, sans-serif;
  margin: 0;
  background-color: #f0f0f0;
  background-image: url('./bgimg.jpg'); /* Ensure this path is correct */
  background-size: cover; /* Cover the entire background */
  background-position: center; /* Center the background image */
  background-repeat: no-repeat; /* Prevent the background image from repeating */
  position: relative; /* Position to contain absolute children */
}

.container {
  display: flex;
  gap: 2em;
}

.login-container, .register-container {
  background-color: white;
  padding: 2em;
  border-radius: 8px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
  width: 300px;
}

.form h2 {
  margin-bottom: 1em;
  text-align: center;
  color: #333;
}

.form input {
  width: 100%;
  padding: 0.8em;
  margin: 0.5em 0;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.form button {
  width: 100%;
  padding: 0.8em;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1em;
}

.form button:hover {
  background-color: #45a049;
}
