body {
    background-color: #121212; /* Dark background */
    color: #fff; /* White font */
  }
  .form-container {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #121212;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  .form-control, .btn-primary {
    background-color: #2c2c2c;
    color: #fff;
    border: 1px solid #444;
  }
  .form-control:focus, .btn-primary:focus {
    box-shadow: none;
    border-color: #666;
  }
/* Index background image layout */
.index-bg {
  background-image: url('../../img/logo.png');
  background-size: 30%;
  background-position: center;
  background-repeat: no-repeat;
  height: 80vh;
}

/* Responsive adjustments */
@media (max-width: 768px) { /* Devices smaller than tablets */
  .index-bg {
      background-size: 50%;
  }
}
@media (max-width: 576px) { /* Extra small devices */
  .index-bg {
      background-size: 60%;
  }
}

.text-muted {
  color: #aaaaaa !important; /* Adjust to a lighter muted tone */
}
.carousel-item img {
  width: 100%; /* Ensure images stretch to fit the carousel container */
  height: auto; /* Maintain aspect ratio */
  max-height: 70vh; /* Limit maximum height for consistency */
  object-fit: cover; /* Crop images to fit perfectly */
}
.carousel-caption {
  background-color: rgba(0, 0, 0, 0.5); /* Dark semi-transparent background for captions */
  padding: 1rem;
  border-radius: 10px;
}
ul li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
ol li {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.5;
}
a:hover {
  text-decoration: underline;
  color: #0056b3; /* A lighter blue */
}