/* Custom styles for WalletFusion */

.input {
  width: 100%;
  border-radius: 0.75rem;
  background-color: rgba(255, 255, 255, 0.08);
  padding: 0.5rem 0.75rem;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.input:focus {
  outline: none;
  border-color: #6C5DD3;
  box-shadow: 0 0 0 2px rgba(108, 93, 211, 0.35);
}

.integration-tile {
  border-radius: 1rem;
  background-color: rgba(255, 255, 255, 0.07);
  padding: 1.5rem 1rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: border-color 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.integration-tile:hover {
  border-color: rgba(108, 93, 211, 0.5);
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.integration-tile img {
  display: block;
  width: 48px;
  height: 48px;
  margin: 0 auto;
}

/* Smooth animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #111a33;
}

::-webkit-scrollbar-thumb {
  background: #6C5DD3;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #8E7AF3;
}

/* Focus visible for accessibility */
*:focus-visible {
  outline: 2px solid #6C5DD3;
  outline-offset: 2px;
}
