/* Apply a modern font */
body {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    color: #333;
  }
  
  /* Add some padding and center the content */
  .container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
  }
  
  /* Style the heading */
  h1 {
    font-size: 24px;
    text-align: center;
    color: #555;
    margin-bottom: 20px;
  }
  
  /* Style the form */
  form {
    display: flex;
    flex-direction: column;
  }
  
  form div {
    margin-bottom: 15px;
  }
  
  label {
    font-weight: bold;
  }
  
  input[type="text"],
  input[type="password"] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  button[type="submit"] {
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  button[type="submit"]:hover {
    background-color: #0056b3;
  }
  
  p#message {
    text-align: center;
    font-weight: bold;
    margin-top: 20px;
  }