 body {
    font-family: Georgia, 'Times New Roman', Times, serif;
    background: #f0f2f5;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }

  .login-container{
    width: 360px;
    padding: 2rem;
    background: #ffff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-align: center;
  }

  h1{
    color: #1877f2;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: bold;
  }

  input{
    width: 100%;
    padding: 14px;
    margin: 8px 0;
    border: 1px solid #dddfe2;
    border-radius: 6px;
    font-size: 1rem;
  }

  button{
    width: 100%;
    padding: 14px;
    background-color: #1877f2;
    color: #fff;
    font-size: 1.1rem;
    font-family: Arial, Helvetica, sans-serif;
    cursor: pointer;
    border: none;
    font-weight: bold;
    border-radius: 6px;
    margin-top: 10px;
  }

  button:hover{
    background: #116fe5;

  }

  #loginMsg{
    margin-top: 10px;
    color: red;
    font-size: 0.9rem;
  }