/* General body and centering */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* A more modern font */
  margin: 0; /* Reset default body margin */
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); /* Subtle gradient background */
  color: #333;
  display: flex; /* Use flexbox for centering */
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  min-height: 100vh; /* Take full viewport height */
  overflow: hidden; /* Hide scrollbars if content slightly overflows */
}

h1 {
  color: #007bff;
  text-align: center; /* Center the login title */
  margin-bottom: 30px; /* More space below title */
}

/* Login Box Styling */
.login-container {
  background-color: #ffffff; /* White background for the box */
  border-radius: 12px; /* More rounded corners */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); /* Softer, larger shadow */
  padding: 40px;
  width: 100%;
  max-width: 450px; /* Max width for the login box */
  text-align: center; /* Center content within the box */
  box-sizing: border-box; /* Include padding in width */
}

/* Logo Styling (placeholder) */
.logo {
  font-size: 2.5em; /* Larger logo text */
  font-weight: bold;
  color: #6c757d; /* Muted color for the logo */
  margin-bottom: 25px;
  letter-spacing: 1px;
}
.logo span {
  color: #007bff; /* Highlight a part of the logo */
}

/* Form inputs */
input[type="text"],
input[type="password"] {
  width: calc(100% - 20px); /* Adjust width for padding */
  padding: 12px 10px; /* More padding */
  font-size: 1.1em; /* Slightly larger font */
  border: 1px solid #ced4da; /* Subtle border */
  border-radius: 8px; /* Rounded input fields */
  margin-bottom: 15px; /* Space between inputs */
  box-sizing: border-box; /* Include padding in width */
  transition: border-color 0.3s ease, box-shadow 0.3s ease; /* Smooth transition on focus */
}

input[type="text"]:focus,
input[type="password"]:focus {
  border-color: #007bff; /* Blue border on focus */
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); /* Glow effect on focus */
  outline: none; /* Remove default outline */
}

/* Login Button */
button[type="submit"] {
  width: 100%; /* Full width button */
  padding: 12px 20px; /* More padding */
  font-size: 1.2em; /* Larger text */
  background-color: #007bff;
  border: none;
  color: white;
  cursor: pointer;
  border-radius: 8px; /* Nicely rounded */
  margin-top: 20px; /* Space above button */
  transition: background-color 0.3s ease, transform 0.2s ease; /* Smooth hover effects */
}

button[type="submit"]:hover {
  background-color: #0056b3;
  transform: translateY(-2px); /* Slight lift effect */
}

/* Remove default styles for ul/li/a that are not relevant to login page */
ul {
  list-style-type: none;
  padding: 0;
}

li {
  padding: 8px 0;
  border-bottom: 1px solid #ccc;
}

a {
  text-decoration: none;
  color: #007bff;
}

a:hover {
  text-decoration: underline;
}