/* Webkit scrollbar styles */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background: #405189;
}

/* Firefox scrollbar styles */
* {
    scrollbar-width: thin;
    scrollbar-color: #405189 #f1f1f1;
}

/* Sample content to enable scrolling */
.content {
    height: 200px;
    overflow-y: scroll;
    padding: 10px;
    border: 1px solid #ddd;
}
.card-shadow {
    box-shadow: 0 7px 10px rgba(0, 0, 0, 0.5);
    /* Customize the shadow effect */
    transition: box-shadow 0.8s ease-in-out;
    /* Optional: for a smooth shadow effect on hover */
}

.brightness-contrast {
    filter: brightness(100%) contrast(100%);
    transition: filter 0.4s ease;
}
.auth-bg-cover {
  background: linear-gradient(
      -50deg,
      #D4A200 ,/* Gold */
      #405189 60% /* Blue */
  );
}

