.card {
  transition: all 0.3s ease;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px var(--bs-primary) !important;
  border: 1px solid var(--bs-primary-bg-subtle);
  border-radius: 70px;
}

.card {
  font-weight: 400;
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

.card {
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair';
}

/* Animation for inputs appearing */

.animate__fadeIn {
  animation-duration: 0.5s;
}

/* Custom Gold border for focus states */

.form-control:focus, .form-select:focus {
  border-color: #B8860B;
  box-shadow: 0 0 0 0.25rem rgba(184, 134, 11, 0.25);
}

/* Button Hover Effect */

.transition-hover {
  transition: transform 0.2s;
}

.transition-hover:hover {
  transform: translateY(-2px);
  background-color: #001a38;
  color: var(--bs-primary);
}

/* Letter Spacing */

.ls-1 {
  letter-spacing: 1px;
}

.secureTransaction {
  background: radial-gradient(circle at top right, rgba(255,255,255,0.1), transparent);
  pointer-events: none;
}

