body {
    background-color: #333;
    color: white; /* Make text visible on dark background */
    font-family: sans-serif; /* Improve readability */
    display: flex; /* Use Flexbox for easy centering */
    flex-direction: column; /* Arrange items vertically */
    justify-content: center; /* Center vertically */
    align-items: center;    /* Center horizontally  
   */
    min-height: 100vh; /* Ensure content fills viewport */
  }
  
  body > * {
    margin: 10px auto; /* Add some spacing between elements */
    width: 80%; /* Or set a specific width */
    max-width: 400px; /* Limit width for better readability */
  }
  
  input[type="text"],
  input[type="password"] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;  
   /* Include padding and border in width */
  }
  
  button[type="submit"] {
    background-color: #4CAF50; /* Green */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  #status {
    text-align: center;
    margin-top: 20px;
  }
  
  #error {
    color: red;
  }
  
  #success {
    color: green;
  }