body {
  position: relative;
  background-image: url("./../../../assets/images/hand_to_hand.jpg");
  background-size: cover;
  background-attachment: fixed;
  /* Ensures the background remains fixed */
  background-position: center;
  
}

html::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  /* height: 100vh; */
  
  /* Gradient color and opacity */
  background: linear-gradient(
    to bottom right,
    rgba(255, 0, 0, 0.1),
    rgba(0, 0, 0, 0.1)
  );
  pointer-events: none;
}

.login-logo b {
  background: linear-gradient(to right, red, black) !important;
  -webkit-background-clip: text;
  background-clip: text !important;
  color: transparent !important;

  /* border: 3px solid gray; */
  /* Adjust border size as needed */
  font-size: 2.5rem !important ;
  
  /* Adjust font size as needed */
}

.gradient-hr {
  height: 3px;
  /* Adjust the height as needed */
  background: linear-gradient(to right, red, white, black);
  /* Replace colors as desired */
  border: none;
  /* Remove the default border */
}

 /* .login-box {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    min-width: 500px !important ;
    margin-bottom: 500px;
  } */
