  .login-container {
    display: flex;
    max-width: 950px;
    min-height: 70vh;
    margin: 10vh auto;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(58, 95, 176, 0.15);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-sizing: border-box;
  }


  .login-error {
  margin: 12px 0;
  color: #dc3545;
  font-size: 14px;
  text-align: center;
}
  .icon-wrapper img {
    width: 300px;
    height: 100px;
    margin: 10vh 0 10vh 0;
  }


  .left-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
  }

  .left-content p {
    font-size: 15px;
    line-height: 1.5;
    opacity: 0.95;
  }

  .right-section {
    flex: 1;
    padding: 50px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .form-header {
    margin-bottom: 35px;
  }

  .form-header h3 {
    font-size: 26px;
    color: #2d3748;
    margin-bottom: 8px;
    font-weight: 700;
  }

  .form-header p {
    color: #718096;
    font-size: 14px;
  }

  .form-group {
    margin-bottom: 22px;
  }

  .form-group label {
    display: block;
    margin-bottom: 8px;
    color: #4a5568;
    font-weight: 600;
    font-size: 14px;
  }

  .form-group input {
    width: 100%;
    padding: 13px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: white;
    color: #2d3748;
  }

  .form-group input:focus {
    outline: none;
    border-color: #3a5fb0;
    box-shadow: 0 0 0 3px rgba(58, 95, 176, 0.1);
  }

  .forgot-password {
    text-align: right;
    margin-top: -10px;
    margin-bottom: 25px;
  }

  .forgot-password a {
    color: #3a5fb0;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
  }

  .forgot-password a:hover {
    text-decoration: underline;
  }

  .submit-btn {
    width: 100%;
    padding: 14px;
    background: #3a5fb0;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 10px;
  }

  .submit-btn:hover {
    background: #2d4a8f;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(58, 95, 176, 0.3);
  }

  .signup-link {
    text-align: center;
    margin-top: 25px;
    color: #718096;
    font-size: 14px;
  }

  .signup-link a {
    color: #3a5fb0;
    text-decoration: none;
    font-weight: 600;
  }

  .signup-link a:hover {
    text-decoration: underline;
  }

  @media (max-width: 1024px) {
    .login-container {
      max-width: 90%;
    }

    
.icon-wrapper img {
  margin:5px 0 5px 0; 
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
  }

  @media (max-width: 768px) {
    .login-container {
      flex-direction: column;
      max-width: 95%;
      min-height: auto;
      margin: 5vh auto;
    }

    .left-section {
      border-radius: 16px 16px 0 0;
      padding: 40px 25px;
      min-height: 280px;
    }




.icon-wrapper img {
  margin:5px 0 5px 0; 
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

    .left-content h2 {
      font-size: 24px;
    }

    .left-content p {
      font-size: 14px;
    }

    .right-section {
      padding: 40px 30px;
    }

    .form-header {
      margin-bottom: 30px;
    }

    .form-header h3 {
      font-size: 24px;
    }
  }

  @media (max-width: 480px) {
    .login-container {
      margin: 3vh auto;
      border-radius: 12px;
    }

    .left-section {
      border-radius: 12px 12px 0 0;
      padding: 35px 20px;
      min-height: 250px;
    }


    
.icon-wrapper img {
  margin:5px 0 5px 0; 
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

    .left-content h2 {
      font-size: 22px;
      margin-bottom: 10px;
    }

    .left-content p {
      font-size: 13px;
    }

    .right-section {
      padding: 35px 25px;
    }

    .form-header {
      margin-bottom: 25px;
    }

    .form-header h3 {
      font-size: 22px;
    }

    .form-header p {
      font-size: 13px;
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-group input {
      padding: 12px 14px;
      font-size: 14px;
    }

    .submit-btn {
      padding: 13px;
      font-size: 15px;
    }

    .signup-link {
      margin-top: 20px;
      font-size: 13px;
    }
  }