.input-64 {
  align-items: center;
  background-image: linear-gradient(144deg, #AF40FF, #5B42F3 50%, #00DDEB);
  border: 0;
  border-radius: 8px;
  box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
  box-sizing: border-box;
  color: #FFFFFF;
  display: flex;
  font-family: Comfortaa, sans-serif;
  font-size: 20px;
  height: 48px;  /* Adjust height as needed */
  justify-content: center;
  max-width: 100%;
  padding: 3px 24px; /* Adjusted for text input, can tweak as needed */
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  white-space: nowrap;
  outline: none;
}

.input-64:focus {
  box-shadow: rgba(151, 65, 252, 0.4) 0 0 8px 3px; /* Highlight focus */
}

@media (min-width: 768px) {
  .input-64 {
    font-size: 24px;
    height: 56px; /* Adjusted height for larger screens */
  }
}