body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(to right, #e8f0fe, #ffffff);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  .login-container {
    text-align: center;
  }
  
  .logo {
    width: 150px;
    margin-bottom: 20px;
  }
  
  .login-box {
    background: #fff;
    padding: 30px; /* same padding on all sides */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    width: 300px;
    margin: auto;
    text-align: center; /* center the content inside */
  }
  
  .login-box input[type="text"],
  .login-box input[type="password"] {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    /*text-align: center; /* center typed text */
  }
  
  .login-box input::placeholder {
    /*text-align: center; /* center placeholder text */
  }
  
  
  
  h2 {
    color: #1a4aa2;
    margin-bottom: 20px;
  }
  
  form label {
    display: block;
    text-align: left;
    margin-bottom: 5px;
    font-weight: bold;
  }
  
  form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  button {
    width: 100%;
    padding: 12px;
    background-color: #1a4aa2;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #143a82;
  }
  
  .links {
    margin-top: 15px;
  }
  
  .links a {
    display: block;
    color: #1a4aa2;
    font-size: 14px;
    margin-top: 5px;
    text-decoration: none;
  }
  
  .links a:hover {
    text-decoration: underline;
  }

  form .inline-group {
    display: flex;
    gap: 10px;
  }
  
  form .inline-group input {
    flex: 1;
  }
    
/* Hide QR section on small screens */
@media (max-width: 768px) {
    .qr-section {
        display: none;
    }

    .login-container {
        width: 100%;
        max-width: 350px;
        padding: 20px;
    }
}
