/* style.css */

.container-fluid {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.user-icon {
  /* Style for user icon */
}

.border {
  border: 1px solid #dee2e6 !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

.animate__animated {
  /* Animation styles */
}

.fadeInRight {
  /* Animation styles */
}

.fadeInLeft {
  /* Animation styles */
}

.diagonal-split {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  background: linear-gradient(-45deg, #5869ff83 50%, transparent 50%);
  animation: animateDiagonalSplit 1s forwards;
}

@keyframes animateDiagonalSplit {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes animateDiagonalSplit {
  0% {
    width: 0;
  }
  100% {
    width: 90%;
  }
}

/* Additional styles */
.p-3 {
  position: relative;
}

.p-3:hover {
  transform: translateY(-5px); /* Adjust the value as needed */
}

.p-3 h3,
.p-3 p {
  position: relative;
  z-index: 2;
}
