/* Footer Component Styles */
.login-footer {
  width: 100%;
  background-color: #1d212b;
  border-top: 1px solid #374151;
  padding: 24px 0;
  margin-top: auto;
  flex-shrink: 0;
  z-index: 100;
}

.footer-container {
  width: 100%;
  margin: 0;
  padding: 0 13px;
}

/* Top Row */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

/* Left Side - Copyright and Navigation */
.footer-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.copyright {
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  font-family: 'Oxygen', sans-serif;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  font-family: 'Oxygen', sans-serif;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #6ef688;
}

.nav-separator {
  color: #6b7280;
  font-size: 12px;
}

/* Right Side - Social Media Icons */
.footer-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  transition: opacity 0.2s ease;
}

.social-icon:hover {
  opacity: 0.7;
}

.social-icon img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1); /* Makes SVG white */
}

/* Bottom Row - Disclaimer */
.footer-bottom {
  display: flex;
  justify-content: flex-end;
}

.disclaimer {
  color: #ffffff;
  font-size: 12px;
  font-weight: 400;
  font-family: 'Oxygen', sans-serif;
  opacity: 0.8;
}

/* Responsive design */
@media (max-width: 768px) {
  .login-footer {
    padding: 20px 0;
    margin-top: 40px; /* Add space between content and footer */
  }

  .footer-container {
    padding: 0 20px;
  }

  .footer-top {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .footer-left {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 8px;
  }

  .footer-bottom {
    justify-content: flex-start;
    margin-top: 12px;
  }
}

/* Desktop footer - restore normal styling */
@media (min-width: 769px) {
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
  }
}
