html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    overflow-x: hidden;

}

* {
    box-sizing: border-box;
  }
  

.login-container {
    display: flex;
    height: 100vh; /* Full viewport height */
    width: 100vw;
}

.login-left-bg {
    flex: 0.6;
    background: url("/src/Model Scanner Login.png") no-repeat center center;
    background-size:cover;
    height: 100%;
    width: 100%;
}
  
  .login-right-form {
    flex: 0.4;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    padding: 40px;
  }
  
  .login-form {
    width: 100%;
    max-width: 350px;
    text-align: center;
  }
  
  .login-logo {
    max-width: 150px;
    margin-bottom: 30px;
  }
  
  h1 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #172b4d;
  }
  
  .login-subtitle {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 30px;
  }
  
  .form-input-group {
    display: flex;
    flex-direction: column;
    text-align: left;
    margin-bottom: 20px;
  }
  
  .form-input-group label {
    font-weight: 600;
    margin-bottom: 5px;
  }
  
  .form-input-group input {
    padding: 10px;
    font-size: 14px;
    border-radius: 5px;
    border: 1px solid #ccc;
    transition: border-color 0.2s;
  }
  
  .form-input-group input:focus {
    border-color: #217867;
    outline: none;
  }
  
  .login-button {
    width: 100%;
    padding: 12px;
    background-color: #217867;
    border: none;
    border-radius: 6px;
    color: white;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s;
  }
  
  .login-button:hover {
    background-color: #1a5f53;
  }
  
  .login-links {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
  }
  
  .login-links a {
    color: #217867;
    text-decoration: none;
  }
  
  .err-msg {
    color: #d9534f;
    margin-top: 10px;
  }
  
  .success-msg {
    color: #28a745;
    margin-top: 10px;
  }
  