body {
  font-family: "Poppins", sans-serif;
}

/* Login Box */
.login-box {
  max-width: 350px;
  width: 100%;
}

.logo {
  width: 150px;
}
.btn {
  border: 1px solid rgb(188, 173, 173);
}
.btn:hover {
  border: 1px solid rgb(188, 173, 173);
}
.image-card img {
  height: 100%;
  width: 100%;
}
.image-card1 img {
  height: 100%;
  width: 100%;
}
/* Gradient Button */
.btn-gradient {
  background: linear-gradient(to right, #7db4da, #b371b1);
  color: #fff;
  border: none;
  transition: 0.3s;
}

.btn-gradient:hover {
  background: linear-gradient(to right, #5a4ecb, #9a84d0);
  color: #fff;
}

/* Divider */
.divider {
  position: relative;
  text-align: center;
  color: #aaa;
}
.divider::before,
.divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: #ddd;
}
.divider::before {
  left: 0;
}
.divider::after {
  right: 0;
}

/* Footer */
.footer {
  background-color: #000;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

.footer-logo {
  width: 150px;
  height: auto;
}

.footer h6 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-list li {
  margin-bottom: 6px;
}

.footer-link {
  color: #cfcfcf;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #fff;
}

/* Center alignment fix */
.footer .row {
  justify-content: center;
  align-items: start;
}

/* Copyright */
.footer .text-secondary {
  color: #8b8b8b !important;
  font-size: 12px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .footer-logo {
    width: 120px;
    margin-bottom: 25px;
  }

  .footer h6 {
    font-size: 14px;
  }

  .footer-link {
    font-size: 12px;
  }

  .footer-list li {
    margin-bottom: 5px;
  }

  .footer .col-lg-3 {
    text-align: center;
    margin-bottom: 20px;
  }
  
}

@media (max-width: 576px) {
  .footer {
    text-align: center;
  }

  .footer-logo {
    width: 110px;
    margin-bottom: 25px;
  }
  
}

/* Responsive */
@media (max-width: 768px) {
  .login-box {
    margin: 20px;
  }
  .image-card img {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .container {
    overflow: hidden;
  }
  .login-section {
    overflow: hidden;
  }
  .footer {
    overflow: hidden;
  }
  
}
