body {
    
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    background-color: #003C96;
    /* fallback color */
    min-height: 100vh;
    margin: 0;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .login-container {
    background: #fff;
    border-radius: 16px;
    max-width: 900px;
    width: 100%;
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
  }

  .login-image {
    flex: 1 1 50%;
    display: block;
    background-color: #eee;
  }

  .login-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .login-form {
    flex: 1 1 50%;
    padding: 40px;
    min-height: 400px;
  }

  .logo img {
    height: 36px;
  }

  .btn-primary {
    border-radius: 8px;
    background: linear-gradient(to right, #3B82F6, #2563EB);
    border: none;
  }

  @media (max-width: 768px) {
    .login-container {
      flex-direction: column;
    }

    /* .login-image {
      display: none;
    } */

    .login-form {
      padding: 30px 20px;
    }
  }