//Search Form
.search-form {
  width: 100%;
  display: flex;
  justify-content: left;

  .search-form-page {
    position: relative;
    z-index: 0;

    input {
      height: 50px;
      line-height: 50px;
      border-radius: 30px;
      padding-left: 64px;
      background: #f7fbff;
      border: 0;
      width: 400px;
      color: #acc4dd;
      font-size: 14px;
    }

    .submit-btn {
      position: absolute;
      left: 0;
      top: 0;
      width: 60px;
      height: 50px;
      font-size: 20px;
      border: none;
      color: #06f;
      background-color: transparent;
      cursor: pointer;
      transition: all 0.3s ease-in;
      padding: 0;
      text-align: center;

      &:focus {
        border: none;
        outline: none;
      }
    }
  }
}

.newsletter-form {
  position: relative;
  input {
    width: 100%;
    line-height: 120px;
    height: 120px;
    border: 20px solid #f2faff;
    border-radius: 80px;
    padding-left: 40px;
    color: #6b93aa;
  }

  .submit {
    position: absolute;
    right: 33px;
    top: 50%;
    transform: translateY(-50%);
    line-height: 60px;
    height: 60px;
    padding: 0 50px;
    background: #8976ff;
    color: #fff;
    border-radius: 40px;
    border: 0;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0px 8px 16px 0px rgba(137, 118, 255, 0.2);
  }
}