/* styles.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background-color: transparent;
  color: #fff;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  max-width: 100%;
  height: auto;
  width: 120px;
}

.nav-list {
  list-style: none;
  display: flex;
}

.nav-item {
  display: flex;
  align-items: center;
  margin: 0 1rem;
}
.left-nav {
  display: flex;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  margin-left: 0.5rem; /* Add space between the icon and text */
}

.nav-link i {
  font-size: 1.2rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle .bar {
  height: 3px;
  width: 25px;
  background-color: #fff;
  margin: 4px 0;
}

@media (max-width: 768px) {
  .nav-list {
    display: none;
    position: absolute;
    top: 107px;
    left: 0;
    width: 100%;
    background-color: lightblue;
    color: #333;
    font-size: 24px;
    flex-direction: column;
    align-items: center;
    z-index: 1;
  }
  .nav-link {
    color: #333;
    font-weight: bold;
  }
  .nav-list.active {
    display: flex;
  }

  .nav-item {
    margin: 1rem 0;
  }
  .left-nav {
    display: block;
  }
  .menu-toggle {
    display: flex;
  }
  .login-container {
    align-items: flex-start;
  }
}

/* Content styles */
.content {
  position: absolute;
  top: 50%;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}

.content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.content .subheading {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.content .btn {
  display: inline-block;
  background-color: #fff;
  color: #333;
  padding: 0.8rem 2rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.content .btn:hover {
  background-color: #ccc;
}

/* Login container */
.login-container {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
  width: 100%;
}
@media (max-width: 768px) {
  .login-container {
    width: 100%;
  }
  .login-box {
    max-width: 100% !important;
    height: auto;
  }
}

.login-header .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  width: 100%;
  height: 136px;
}

.login-header .logo img {
  max-width: 100%;
  height: auto;
  width: 80%; /* Adjust the width as per your design */
  max-height: 100px; /* Set maximum height to maintain aspect ratio */
}
.login-box {
  background: linear-gradient(135deg, #43cea2, #185a9d);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  width: 350px;
  text-align: center;
  margin: 70px auto;
  max-width: 45%;
}

.login-header {
  margin-bottom: 20px;
}

.login-header h2 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 5px;
}

.login-header p {
  color: #fff;
  font-size: 14px;
  margin-bottom: 0;
}

.login-form {
  text-align: left;
}

.form-group {
  position: relative;
  margin-bottom: 20px;
}

.form-group i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 18px;
}

.form-group input[type="text"],
.form-group input[type="password"] {
  width: calc(100% - 5px);
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding-left: 40px;
}

.login-button {
  background-color: #3598da;
  color: white;
  border: none;
  padding: 12px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease;
}

.login-button:hover {
  background-color: #639ace;
}

/* footer.css */
footer {
  background-color: #f8f8f8;
  text-align: center;
  padding: 10px 0;
  width: 100%;
  position: fixed;
  bottom: 0;
}

footer img {
  max-width: 100%;
  height: auto;
  margin-bottom: 14px;
}
@media (max-width: 768px) {
  footer img {
    margin-bottom: 30px; /* Adjust margin-bottom for mobile devices */
  }
}

footer p {
  margin: 10px 0 0 0;
  color: #b1c0be;
  font-size: 14px;
  background-color: #007bff;
  position: absolute;
  padding: 5px;
  bottom: 0;
  left: 0;
  right: 0;
}

/* coming-soon */
.coming-soon-message {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 60%;
  transform: translate(-50%, -50%);
  background-color: rgba(73, 103, 202, 0.9);
  padding: 20px;
  /* margin-bottom: 20px !important; */
  border-radius: 8px;
  text-align: center;
  animation: slideIn 0.5s ease-in-out forwards;
  z-index: 1000; /* Ensure it's above other content */
}
@media (max-width: 768px) {
  .coming-soon-message {
    width: 100%;
    height: 50%;
  }
  .coming-soon-message span {
    margin-top: 35% !important;
    font-size: 24px;
  }
}

.coming-soon-message span {
  margin-top: 20%;
  text-align: center;
  display: inline-block;
  color: #fff;
  font-size: 24px;
  /* Optional: Adjust font size and other styles as needed */
}
@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -100%);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}
