/* General Body Styling */
html, body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #d9d9d9; /* Mild, light blue background */
  color: #333;
  text-align: center;
  width: 100%; /* Ensure full width */
  height: 100%; /* Ensure full height */
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center; /* Centers content vertically */
  align-items: center; /* Centers content horizontally */
}

/* Header Styling */
header {
  width: 100%;
  background-color: #2b2b2b; /* Background color for the header */
  padding: 30px 0; /* Padding around the header */
  display: flex;
  justify-content: center; /* Centers the logo container horizontally */
  position: relative; /* Allows for positioning of logos */
  height: 50px;
  border-top: 2px solid #cc5500; /* Top border */
  border-bottom: 2px solid #cc5500; /* Bottom border */
}

/* Logo Container Styling */
.logo-container {
  position: relative; /* Allows for absolute positioning of child elements */
  display: flex;
  align-items: center; /* Align logos vertically */
}

/* Logo Styling */
.header-logo {
  width: 150px; /* Adjust based on your logo size */
  height: auto;
  padding: 10px; /* Padding around the logo */
  margin: 0; /* Reset margin */
  margin-top: -30px;
}

/* Additional Logo Styling */
.right-logo {
  width: 120px; /* Adjust based on your logo size */
  height: auto;
  position: absolute; /* Position relative to the container */
  top: 50%; /* Center vertically relative to header */
  margin-top: 0px; /* Space between the two logos */
  left: 60px; /* Adjust based on your layout */
}

/* Navigation Styling for Index Page */
nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

/* Logo Styling for Index Page */
.logo {
  width: 120px;
  height: auto;
  border-radius: 12px; /* Rounded corners for a card-like appearance */
  background-color: #fff; /* White background for the logos */
  padding: 10px; /* Padding around the logo */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none; /* Remove underline from links */
}

.logo:hover {
  transform: scale(1.1); /* Slightly enlarge the logo on hover */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Enhanced shadow on hover */
}

/* Application Name Styling */
.app-name {
  margin-top: 10px;
  font-size: 14px;
  color: #333;
}

/* Welcome Section Styling */
.welcome {
  margin-bottom: 20px;
}

.welcome h1 {
  font-size: 24px;
  margin-bottom: 10px;
}

.welcome p {
  font-size: 16px;
  margin-bottom: 20px;
}

/* Footer Styling */
footer {
  padding: 20px; /* Increase padding to create space inside the footer */
  background-color: #2b2b2b;
  color: #fff;
  width: 100%;
  text-align: center;
  margin-top: auto; /* Ensures footer is pushed to the bottom of the page */
  position: relative;
  border-top: 2px solid #cc5500; /* Top border */
  border-bottom: 2px solid #cc5500; /* Bottom border */
  height: 30px;
}

/* Logout Button Styling */
.logout a {
  display: inline-block;
  padding: 8px 16px; /* Reduced padding */
  background-color: #cc5500;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px; /* Reduced font size */
  text-decoration: none; /* Remove underline from the link */
  position: relative;
  top: 20px;
}

.logout a:hover {
  background-color: #e65c00; /* Slightly different color on hover */
}

footer a {
  color: #4CAF50;
  text-decoration: none;
  font-weight: bold;
}

footer a:hover {
  text-decoration: underline;
}
/* Add this to your existing CSS file */

.password-container {
  position: relative;
  display: flex;
  align-items: center;
}

.password-container input {
  flex: 1;
}

.eye-icon {
  position: absolute;
  right: 10px;
  cursor: pointer;
}

.eye-icon img {
  width: 20px; /* Adjust the size as needed */
  height: 20px;
}
/* Form Styling */
form {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 300px;
  text-align: left;
  position: relative;
  left: 80px;
}

form label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

form input[type="text"],
form input[type="password"] {
  width: calc(100% - 25px); /* Ensure inputs and labels fit together */
  padding: 8px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

form .password-container {
  display: flex;
  align-items: center;
}

form .password-container input[type="password"] {
  flex: 1;
  margin-right: 8px;
}
form button {
  width: 100%;
  padding: 10px;
  background-color: #e65c00;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

form button:hover {
  background-color: #d35400;
}

form .error {
  color: red;
  margin-top: 10px;
}

@media (max-width: 768px) {
    form {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 300px;
  text-align: left;
  position: relative;
  left: 30px;
}

    
}