body {
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url("../backgrounds/background-8.jpg"); /* path to your image */
  background-size: cover; /* makes it cover the whole screen */
  background-repeat: no-repeat; /* prevents tiling */
  background-position: center; /* centers the image */
  height: 100vh;
  margin: 0;
  overflow: hidden;
  user-select: none !important;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

.rounded-ends {
  border-radius: 50px;
}

.password-eye {
  /* background-color: #8e959d !important; */
  background: linear-gradient(45deg, #0d6efd, #6610f2) !important;
  color: white !important;
  cursor: pointer;
  /* border: 0.5px solid #8e959d; */
  border-top-right-radius: 50px !important;
  border-bottom-right-radius: 50px !important;
}

/* Newly added styles */
input {
  font-size: 14px !important;
}

/* 07-Oct-25 */
.login-gradient-title {
  background: linear-gradient(45deg, #0d6efd, #6610f2);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.login-gradient-button {
  background: linear-gradient(45deg, #0d6efd, #6610f2);
  border: none;
  color: #fff;
}
#passkey {
  /* -webkit-text-security: disc !important; */
  /* text-security: disc !important; */
  /* font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif !important; */
  font-size: 16px !important; /* increase size */
  letter-spacing: 0px !important; /* adds spacing between dots */
}
.three-column-grid {
  grid-template-columns: repeat(3, 1fr);
}
.cursor-pointer {
  cursor: pointer;
}
.keypad-btn {
  transition: transform 0.1s, background-color 0.1s;
  -webkit-tap-highlight-color: transparent; /* remove default highlight */
}
.keypad-btn.pressed {
  transform: scale(0.8);
  background-color: #555; /* slightly lighter/darker for effect */
}
