body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url("/images/bg.png"); /* update the path */
  background-size: cover;
  background-position: center;
  z-index: -1;
  filter: blur(5px);
  opacity: 0.9;
}

body {
  margin: 0;
  padding: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to right, #e6f5ea, #f3fdf8);
  font-family: "Poppins", "Segoe UI", sans-serif;
}

.homeDiv {
  background-color: #ffffff;
  padding: 60px 80px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 1000px;
  width: 90%;
  border-left: 6px solid #27ae60;
  border-right: 6px solid #27ae60;
}

.homeDiv h1 {
  font-size: 3rem;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 600;
  letter-spacing: 1px;
}

.homeDiv p {
  font-size: 1.2rem;
  color: #7f8c8d;
  margin-bottom: 25px;
}

.homeDiv .btn {
  padding: 12px 25px;
  font-size: 1.1rem;
  border-radius: 8px;
  text-decoration: none;
}

.LoginDiv {
  background-color: #ffffff;
  padding: 60px 80px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 500px;
  text-align: center;
  border-left: 6px solid #27ae60;
  border-right: 6px solid #27ae60;
  box-sizing: border-box;
}

.LoginDiv h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 25px;
  font-weight: 600;
}

.LoginDiv input {
  width: 100%;
  padding: 12px 15px;
  margin: 12px 0;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  box-sizing: border-box;
}

.LoginDiv button {
  width: 100%;
  padding: 12px 20px;
  background-color: #27ae60;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.LoginDiv button:hover {
  background-color: #219150;
}
