body {
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url("../backgrounds/background-1.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.2);
  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;
} */
.btn {
  --bs-btn-font-size: 1.4rem;
}

.password-eye {
  background-color: #8e959d !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: 25px !important;
}

input {
  background: rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(5px) !important;
  border: none !important;
}

/* .modal.fade .modal-dialog {
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
} */

/* START (09-Nov-25) */
input[type="password"] {
  -webkit-text-security: disc !important;
  text-security: disc !important;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif !important;
  font-size: 24px !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 */
}
/* END (09-Nov-25) */
