﻿ body, html {
        height: 100%;
        margin: 0;
        background-color: #f1f3f5;
        font-family: "Microsoft JhengHei", sans-serif;
        }
        .login-section {
        height: 100vh;
        display: flex;
        }
        .login-left {
             background-image: url('/Images/erp.png');
  background-size: cover; /* This will make sure the image covers the entire screen */
  background-position: center; /* This centers the image */
  background-repeat: no-repeat; /* Prevents the image from repeating */
       
        color: white;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem;
        flex: 1;
        }
        .login-left h1 {
        font-size: 2rem;
        margin-top: 1rem;
        }
        .login-left img {
        max-width: 180px;
        }
        .login-right {

          background: #1f2d3d;
        display: flex;
        justify-content: center;
        align-items: center;
        flex: 1;
        padding: 2rem;
        }
        .login-form {
        width: 100%;
        max-width: 400px;
        }