.cards-search-form {
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.1);
  font-size: 18px;
  color: #63376A; }
  .cards-search-form > div {
    display: inline-block; }
  .cards-search-form .input-wrapper {
    position: relative;
    width: calc(100% - 95px);
    max-width: 100%; }
    .cards-search-form .input-wrapper input[type='text'] {
      width: 100%;
      padding: 5px 30px 5px 10px;
      border-radius: 5px;
      border: 1px solid #63376A;
      outline: none;
      background: white;
      color: #63376A; }
      .cards-search-form .input-wrapper input[type='text']::placeholder {
        font-size: 14px;
        color: rgba(0, 0, 0, 0.3); }
    .cards-search-form .input-wrapper .clear-query {
      position: absolute;
      top: 5px;
      right: 5px;
      width: 25px;
      height: 25px;
      font-size: 20px;
      cursor: pointer;
      border-radius: 50%;
      transition: background-color 0.6s ease, color 0.6s ease;
      text-align: center; }
      .cards-search-form .input-wrapper .clear-query:hover {
        color: red;
        background-color: rgba(0, 0, 0, 0.2); }
  .cards-search-form .submit-wrapper {
    width: 90px;
    padding-left: 5px; }
    .cards-search-form .submit-wrapper input[type='submit'] {
      outline: 1px solid #63376A;
      border: none;
      color: #63376A;
      cursor: pointer;
      margin-right: 7px;
      transition: color 0.5s ease, background 0.5s ease;
      border-radius: 8px;
      font-size: 16px;
      width: 100%;
      height: 35px; }
      .cards-search-form .submit-wrapper input[type='submit']:hover {
        background: #63376A;
        color: white; }
