body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f4f4f9;
}

.background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url("../images/p.jpg");
  /* Add your background image URL */
  background-size: cover;
  background-position: center;
  filter: blur(4px);
  z-index: -1;
}

.dark-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  /* Adjust the opacity as needed */
  z-index: -1;
}

.container {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 80%;
  max-width: 1200px;
}

.sample-text {
  color: white;
  font-size: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  flex: 1;
  margin-right: 20px;
}

.sample-text h1 {
  margin: 0 0 10px 0;
}

.sample-text p {
  margin: 0;
}

.login-container {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 0px 0px 10px 10px;
  padding: 30px;
  width: 300px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  flex: 0 0 auto;
  border-top: 9px solid red;
}

.login-container h2 {
  margin: 0 0 20px 0;
  color: #333;
  text-align: center;
}

.login-container label {
  display: block;
  margin-bottom: 5px;
  color: #555;
}

.login-container input[type="text"],
.login-container input[type="email"],
.login-container input[type="password"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}

.login-container button {
  width: 100%;
  padding: 10px;
  background-color: #007bff;
  border: none;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

.login-container button:hover {
  background-color: #0056b3;
}

.login-container a {
  color: #007bff;
  text-decoration: none;
}

.login-container a:hover {
  text-decoration: underline;
}

.login-container .links {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}
