/* Footer styles */
footer {
  background-color: #191c1f;
  color: white;
  padding: 40px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer-list-div {
  flex: 1;
  min-width: 200px;
}

.footer-list {
  list-style: none;
  padding: 0;
}

.footer-list h5 {
  margin-bottom: 15px;
}

.footer-list li {
  margin-bottom: 10px;
}

.footer-list a {
  text-decoration: none;
  color: #ccc;
  transition: color 0.3s ease;
}

.footer-list a:hover {
  color: white;
}

/* Responsive styles */
@media (max-width: 768px) {
  footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-list-div {
    min-width: 100%;
  }
}


.body {
  display: flex;
  justify-content: center;
  align-items: center;
}

.signin-container {
  width: 20%;

  box-shadow: #4f5761;
  margin: 30px;
  padding: 10px;
}

.submitBtn {
  background: #fa8232;
}

.switch-heading {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-size: 24px;
}

.tab {
  cursor: pointer;
  margin: 0 10px;
  padding: 5px 10px;
  position: relative;
  color: #333;
  font-weight: 600;
  transition: color 0.3s ease;
}

.tab.active {
  color: #f57c00;
  /* Orange color for active */
}

.tab.active::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 3px;
  background-color: #f57c00;
  /* Orange underline */
  transition: width 0.3s ease, background-color 0.3s ease;
}

.tab:not(.active):hover {
  color: #f57c00;
}

.switch-heading .tab+.tab {
  margin-left: 20px;
  /* Space between tabs */
}