* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  body, html {
    height: 100%;
    font-family: Arial, sans-serif;
  }

  .login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; /* Full viewport height */
  background-color: #ffffff;
  }
  
  .login-box {
  display: flex;
  justify-content: center;
  align-items: center; /* Vertically centers both the image and form */
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  width: 80%;
  max-width: 800px;
  overflow: hidden;
  }

  
  .login-box img {
  width: 50%;
  max-width: 400px;
  height: auto;
  object-fit: cover;
  display: block;
  }

  .form-section {
  width: 50%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Ensures the form content is centered vertically */
  }

  .form-section h1 {
    text-align: center;
    margin-bottom: 10px;
    color: #333;
  }

  .form-section input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
    background-color: #f0f0f0;
  }

  .login-btn {
      width: 100%;
      padding: 10px;
      background-color: #002efb;
      color: white;
      border: none;
      cursor: pointer;
      margin: 10px 0;
      border-radius: 5px;
  }

  .login-btn.clicked {
  background-color: #000000; /* New color when clicked */
  color: #ffffff; /* Adjust text color if needed */
  }

  .login-btn:hover {
    background-color: #1f4cf0;
  }

  .social-login {
    display: flex;
    justify-content: center;
    gap: 40px; /* Add space between the icons */
    margin-top: 5px;
  }

  .forgot-password {
    margin-top: 15px;
    text-align: center;
  }

  .forgot-password a {
    color: #007bff;
    text-decoration: none;
  }

  .forgot-password a:hover {
    text-decoration: underline;
  }

  @media (max-width: 768px) {
    .login-box {
      flex-direction: column;
    }

    .login-box img, .form-section {
      width: 100%;
    }
  }

  .login-box img {
  width: 50%;
  max-width: 400px; /* Limit the image width */
  max-height: 400px; /* Limit the image height */
  object-fit: cover;
  height: 100%;
  }

  /* OR Divider */
  .or-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 5px 0;
  }

  .or-divider::before,
  .or-divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #ccc;
  }

  .or-divider:not(:empty)::before {
  margin-right: 10px;
  }

  .or-divider:not(:empty)::after {
  margin-left: 10px;
  }

  .or-divider span {
  font-size: 14px;
  color: #777;
  }

  .sign-up {
  text-align: center;
  margin-top: 15px;
  }

  .sign-up a {
  color: #007bff;
  text-decoration: none;
  }

  .sign-up a:hover {
  text-decoration: underline;
  }
