body {
    font-family: Arial, sans-serif;
    background: #f0f0f0;
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
    margin: 0;
  }
  .login-container {
    background: white;
    padding: 2em;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    width: 30vw;
    height: 70vh;
  }
  .login-container h2 {
    margin-bottom: 1em;
    text-align: center;
  }
  .login-container label {
    display: block;
    margin-bottom: 0.3em;
    font-weight: bold;
  }
  .input-group {
    position: relative;
    margin-bottom: 1.5em;  /* Increased margin bottom for spacing */
  }
  .login-container input[type="text"],
  .login-container input[type="password"] {
    width: 100%;
    padding: 0.5em 2.5em 0.5em 0.5em; /* space for the icon */
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 1em;
    height: 6vh;
    transition: box-shadow 0.9s ease;
    margin-bottom: 1.5em;  /* Added margin bottom for spacing */
  }
  .login-container input[type="text"]:hover,
  .login-container input[type="password"]:hover {
    box-shadow: 2px 3px 15px 5px rgb(13, 203, 224);
  }
  .toggle-password {
    position: absolute;
    top: 37%;
    right: 0.6em;
    transform: translateY(-50%);
    cursor: pointer;
    color: #888;
    font-size: 1.2em;
    user-select: none;
  }
  .toggle-password:hover {
    color: #0056b3;
  }
  .login-container button {
    width: 100%;
    padding: 0.7em;
    background-color: #007BFF;
    border: none;
    color: white;
    font-weight: bold;
    font-size: 1em;
    border-radius: 4px;
    cursor: pointer;
    height: 6vh;
  }
  .login-container button:hover {
    background-color: #0056b3;
  }
  .error-msg {
    color: red;
    margin-bottom: 1em;
    text-align: center;
    display: none;
  }
  