@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.container {
  width: 100%;
  padding: 1rem 0.5rem;
  display: flex;
  align-items: center;
  position: fixed;
  bottom: 0;
  justify-content: center;
  max-width: 350px;
  border-radius: 35px 35px 0 0;
  gap: 0.5rem;
  background: var(--red-secondary);

  @media (max-width: 768px) {
    max-width: 100%;
  }

  form {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--white-solid);
    padding: 0 1rem;
    gap: 1rem;
  }

  input {
    width: 100%;
    overflow: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0.5rem;
    line-height: 1rem;
    resize: none;
    font-size: 0.9rem;
    background: transparent;
    outline: none;
    border: none;
    border-bottom: 1px solid var(--white-gradient);
    color: var(--white-solid);
    font-weight: 400;
    transition: all 0.5s ease-in-out;

    @media (max-width: 768px) {
      font-size: 1rem;
    }

    &::placeholder {
      font-weight: 300;
      color: var(--white-solid);
      opacity: 0.65;
    }

    &:focus {
      border-bottom: 2px solid var(--white-solid);
    }

    &::-webkit-scrollbar {
      display: none;
    }

    &:disabled {
      opacity: 0.5;
    }
  }

  button {
    animation: fadeIn 0.5s ease-in-out;
    width: auto;
    padding: 0.75rem !important;
    background: transparent;
    border: 1px solid var(--white-solid);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
