/* Custom Background Login Image */
.bg-login-image {
    background: url('../img/bg.png');
    background-position: center;
    background-size: 70%;
    background-repeat: no-repeat;
    opacity: 0.7;
}
/* css/custom.css */

/* Gradient banner */
.welcome-banner {
  background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
  color: #fff;
  padding: 30px;
  border-radius: 0.75rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Custom card */
.card-custom {
  border-left: 4px solid #4e73df;
  border-radius: 0.75rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.card-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.card-icon {
  font-size: 2rem;
  opacity: 0.3;
}
