body {
  font-family: "Poppins", sans-serif;
}

/* Login Box */
.login-box {
  max-width: 400px;
  width: 100%;
}

.logo {
  width: 150px;
}
.image-card img {
  
  height: 100%;
  width: 100%;
}
/* Gradient Button */
.btn-gradient {
  background: linear-gradient(to right, #6a5acd, #b19cd9);
  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-logo {
  width: 130px;
}

.footer h6 {
  margin-bottom: 0.75rem;
}

/* Responsive */
@media (max-width: 768px) {
  .login-box {
    margin: 20px;
  }
  .image-card img {
    width: 100%;
  }
}
