/* General Styles */
body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  background-image: url('your-background-image.jpg'); /* Replace with your desired background */
  background-size: cover;
  background-attachment: fixed;
  color: #333;
}

/* Navbar */
.navbar {
  background-color: #007BFF;
  color: white;
  padding: 10px 20px; /* Adjust padding to fit logo and text */
  display: flex;
  align-items: center; /* Center vertically */
  justify-content: center; /* Center horizontally */
  position: relative; /* For positioning logo and links */
}

/* Flex Container for Navbar Content */
.navbar-content {
  display: flex;
  align-items: center;
}

/* Logo Styles */
.navbar .logo img {
  height: 40px; /* Adjust height to fit within navbar */
  margin-right: 15px; /* Space between logo and navbar text */
}

/* Navbar Link Styles */
.navbar a {
  color: white;
  text-decoration: none;
  padding: 10px;
}

/* Navbar Link Hover Style */
.navbar a:hover {
  text-decoration: underline;
}

/* Flexbox Adjustment */
.navbar .logo {
  display: flex;
  align-items: center;
  margin-right: 15px; /* Space between logo and navbar text */
}

/* Login Form Logo */
.login-logo {
  display: block;
  max-width: 150px; /* Adjust size as needed */
  height: auto;
  margin: 0 auto 20px; /* Center and add margin below */
}

/* Main Container */
.main-container {
  max-width: 900px;
  margin: 20px auto;
  padding: 20px;
}

/* Container Styles */
.container {
  padding: 20px;
  margin: 20px 0;
  background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent white background */
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* Form Styles */
.form {
  margin-bottom: 20px;
  animation: fadeIn 0.5s ease-in-out; /* Animation for form appearance */
}

.form h2, .form h3 {
  color: #007BFF;
}

.input-field {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-bottom: 10px;
}

.radio-group {
  margin-bottom: 10px;
}

.btn {
  background-image: linear-gradient(to right, #007BFF, #0056b3); /* Gradient background */
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.btn:hover {
  background-image: linear-gradient(to right, #0056b3, #007BFF);
}

/* Table Styles */
.table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.table th, .table td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: left;
}

.table th {
  background-color: #f2f2f2;
  color: #333;
}

.table td {
  background-color: #fff;
}

.table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.table tr:hover {
  background-color: #f1f1f1;
  transform: scale(1.02); /* Slight hover effect */
}

/* Responsive Design */
@media only screen and (max-width: 768px) {
  .container {
    padding: 15px;
  }
  .table {
    font-size: 14px;
  }
}
