body {
  font-family: sans-serif;
  background-color: #1596f9; /* Light gray background */
  display: flex;
  flex-direction: column;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  /* min-height: 100vh; Ensure full viewport height */
  margin: 0; /* Remove default margins */
}

.login-form {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  width: 350px; /* Adjust width as needed */
  text-align: center; /* Center form content */
}

h2 {
  color: #333;
  margin-bottom: 20px;
}

input[type="text"],
input[type="password"] {
  width: calc(100% - 22px); /* Account for padding and border */
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 16px; /* Improve readability */
}

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

button {
  background-color: #007bff;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  width: 100%; /* Full width button */
}

button:hover {
  background-color: #0056b3;
}

p {
  color: red; /* Style error messages */
  margin-top: 10px;
}
#footer {
  /* margin-top: 40px; */
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 5px;
  position: fixed;
  bottom: 0;
  width: 100%;
}
#footer p {
  color: #fff;
}

#footer a {
  color: #03a9f4;
  text-decoration: none;
}
.logo {
    width: 250px;
    /* Set the width to 250px */
    margin: auto;
    /* Center the logo horizontally */
}

.logo img {
    width: 100%;
    /* Make the image responsive */
    height: auto;
    /* Maintain the image's aspect ratio */
    object-fit: contain;
    /* Ensure the image fits within the container */
    margin-top: 75px;
}
@media (max-width: 480px) {
    .login-form {
        width: 75%;
        
    }

}
