.login-container {
  margin: 160px;
  border-radius: 12px;
  box-shadow: 0px 5px 18px 9px rgba(0, 0, 0, 0.2);
}

.left-form {
  border-radius: 12px;
  background: #fff;
}

#login {
  position: relative;
  /* Required for the pseudo-element to be positioned correctly */
  overflow: hidden;
  /* To hide any overflow caused by the blur effect */
  z-index: 1;
  /* Ensures the content stays above the background */
}

#login::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../../Assets/images/timeline_bg.png");
  /* Add the background image */
  background-size: cover;
  background-position: center;
  filter: blur(4px);
  /* Apply blur to the background image */
  z-index: -1;
  /* Place it behind the container content */
}

.right-form {
  background: url("../../Assets/images/mission_bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0px 12px 12px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* Ensure it takes full height if needed */
  min-height: 100%;
}

.right-form .quote-container {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  max-width: 80%;
  margin: auto;
}

.right-form .quote {
  font-style: italic;
  font-size: 1.5rem;
  color: #333;
  margin: 0;
  padding: 0;
}

.right-form .quote-author {
  font-size: 1.2rem;
  color: #666;
  margin-top: 15px;
}

.left-form {
  padding: 60px 30px 60px 30px;
}

@media only screen and (max-width: 900px) {
  .login-container {
    margin-top: 170px !important;
    margin: 30px;
  }

  .right-form {
    display: none;
  }
}
