/* Set global font, background color, alignment, and padding for the page */
body {
    font-family: Arial, sans-serif;
    background: #f0f0f0;
    text-align: center;
    padding: 20px;
}

/* Center the form horizontally using flexbox and add spacing from the top */
.form-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

/* Style for all <label> elements: spacing and left alignment */
label {
    display: block;
    margin: 10px 0 5px;
    text-align: left;
}

/* Apply consistent width and spacing to text/password inputs and submit buttons */
input[type="text"],
input[type="password"],
input[type="submit"] {
    width: 100%;
    margin-top: 5px;
}

/* Style for login button */
.login-btn {
  background-color: #28a745;  /* Green background */
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 4px;
  display: inline-block;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

/* Optional: hover effect */
.login-btn:hover {
  background-color: #218838;  /* Darker green */
  
}



